当前位置: 首页>>代码示例>>PHP>>正文


PHP Configure::init方法代码示例

本文整理汇总了PHP中Configure::init方法的典型用法代码示例。如果您正苦于以下问题:PHP Configure::init方法的具体用法?PHP Configure::init怎么用?PHP Configure::init使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Configure的用法示例。


在下文中一共展示了Configure::init方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: define

 * Handles loading of core files needed on every request
 *
 * PHP Version 5.x
 *
 * CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
 * Copyright 2005-2009, Cake Software Foundation, Inc. (http://cakefoundation.org)
 *
 * Licensed under The MIT License
 * Redistributions of files must retain the above copyright notice.
 *
 * @copyright     Copyright 2005-2009, Cake Software Foundation, Inc. (http://cakefoundation.org)
 * @link          http://cakephp.org CakePHP(tm) Project
 * @package       cake
 * @subpackage    cake.cake
 * @since         CakePHP(tm) v 0.2.9
 * @license       MIT License (http://www.opensource.org/licenses/mit-license.php)
 */
if (!defined('E_DEPRECATED')) {
    define('E_DEPRECATED', 8192);
}
error_reporting(E_ALL & ~E_DEPRECATED);
require CORE_PATH . 'cake' . DS . 'basics.php';
$TIME_START = microtime(true);
require CORE_PATH . 'cake' . DS . 'config' . DS . 'paths.php';
require LIBS . 'object.php';
require LIBS . 'inflector.php';
require LIBS . 'configure.php';
require LIBS . 'set.php';
require LIBS . 'cache.php';
Configure::init();
require CAKE . 'dispatcher.php';
开发者ID:evrard,项目名称:cakephp2x,代码行数:31,代码来源:bootstrap.php

示例2: __bootstrap

 /**
  * Initializes the environment and loads the Cake core.
  *
  * @return boolean Success.
  * @access private
  */
 function __bootstrap()
 {
     define('ROOT', $this->params['root']);
     define('APP_DIR', $this->params['app']);
     define('APP_PATH', $this->params['working'] . DS);
     define('WWW_ROOT', APP_PATH . $this->params['webroot'] . DS);
     $includes = array(CORE_PATH . 'cake' . DS . 'config' . DS . 'paths.php', CORE_PATH . 'cake' . DS . 'libs' . DS . 'object.php', CORE_PATH . 'cake' . DS . 'libs' . DS . 'inflector.php', CORE_PATH . 'cake' . DS . 'libs' . DS . 'configure.php', CORE_PATH . 'cake' . DS . 'libs' . DS . 'file.php', CORE_PATH . 'cake' . DS . 'libs' . DS . 'cache.php', CORE_PATH . 'cake' . DS . 'libs' . DS . 'string.php', CORE_PATH . 'cake' . DS . 'libs' . DS . 'class_registry.php', CORE_PATH . 'cake' . DS . 'console' . DS . 'error.php');
     foreach ($includes as $inc) {
         if (!(require $inc)) {
             $this->stderr("Failed to load Cake core file {$inc}");
             return false;
         }
     }
     Configure::init(file_exists(CONFIGS . 'bootstrap.php'));
     if (!file_exists(APP_PATH . 'config' . DS . 'core.php')) {
         include_once CORE_PATH . 'cake' . DS . 'console' . DS . 'templates' . DS . 'skel' . DS . 'config' . DS . 'core.php';
         App::build();
     }
     Configure::write('debug', 1);
     return true;
 }
开发者ID:evrard,项目名称:cakephp2x,代码行数:27,代码来源:cake.php


注:本文中的Configure::init方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。