當前位置: 首頁>>代碼示例>>PHP>>正文


PHP Config::load方法代碼示例

本文整理匯總了PHP中think\Config::load方法的典型用法代碼示例。如果您正苦於以下問題:PHP Config::load方法的具體用法?PHP Config::load怎麽用?PHP Config::load使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在think\Config的用法示例。


在下文中一共展示了Config::load方法的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: buildCacheContent

 protected function buildCacheContent($module)
 {
     $content = '';
     $path = realpath(APP_PATH . $module) . DS;
     // 加載模塊配置
     $config = \think\Config::load(CONF_PATH . $module . 'config' . CONF_EXT);
     // 加載應用狀態配置
     if ($module && $config['app_status']) {
         $config = \think\Config::load(CONF_PATH . $module . $config['app_status'] . CONF_EXT);
     }
     // 讀取擴展配置文件
     if ($module && $config['extra_config_list']) {
         foreach ($config['extra_config_list'] as $name => $file) {
             $filename = CONF_PATH . $module . $file . CONF_EXT;
             \think\Config::load($filename, is_string($name) ? $name : pathinfo($filename, PATHINFO_FILENAME));
         }
     }
     // 加載別名文件
     if (is_file(CONF_PATH . $module . 'alias' . EXT)) {
         $content .= '\\think\\Loader::addClassMap(' . var_export(include CONF_PATH . $module . 'alias' . EXT, true) . ');' . PHP_EOL;
     }
     // 加載行為擴展文件
     if (is_file(CONF_PATH . $module . 'tags' . EXT)) {
         $content .= '\\think\\Hook::import(' . var_export(include CONF_PATH . $module . 'tags' . EXT, true) . ');' . PHP_EOL;
     }
     // 加載公共文件
     if (is_file($path . 'common' . EXT)) {
         $content .= substr(php_strip_whitespace($path . 'common' . EXT), 5) . PHP_EOL;
     }
     $content .= '\\think\\Config::set(' . var_export(\think\Config::get(), true) . ');';
     return $content;
 }
開發者ID:Dragonbuf,項目名稱:god-s_place,代碼行數:32,代碼來源:Config.php

示例2: init

 private static function init()
 {
     // 加載初始化文件
     if (is_file(APP_PATH . 'init' . EXT)) {
         include APP_PATH . 'init' . EXT;
         // 加載模塊配置
         $config = Config::get();
     } else {
         // 加載模塊配置
         $config = Config::load(APP_PATH . 'config' . EXT);
         // 加載應用狀態配置
         if ($config['app_status']) {
             $config = Config::load(APP_PATH . $config['app_status'] . EXT);
         }
         // 讀取擴展配置文件
         if ($config['extra_config_list']) {
             foreach ($config['extra_config_list'] as $name => $file) {
                 $filename = APP_PATH . $file . EXT;
                 Config::load($filename, is_string($name) ? $name : pathinfo($filename, PATHINFO_FILENAME));
             }
         }
         // 加載別名文件
         if (is_file(APP_PATH . 'alias' . EXT)) {
             Loader::addMap(include APP_PATH . 'alias' . EXT);
         }
         // 加載行為擴展文件
         if (APP_HOOK && is_file(APP_PATH . 'tags' . EXT)) {
             Hook::import(include APP_PATH . 'tags' . EXT);
         }
         // 加載公共文件
         if (is_file(APP_PATH . 'common' . EXT)) {
             include APP_PATH . 'common' . EXT;
         }
     }
     // 注冊根命名空間
     if (!empty($config['root_namespace'])) {
         Loader::addNamespace($config['root_namespace']);
     }
     // 加載額外文件
     if (!empty($config['extra_file_list'])) {
         foreach ($config['extra_file_list'] as $file) {
             $file = strpos($file, '.') ? $file : APP_PATH . $file . EXT;
             if (is_file($file)) {
                 include_once $file;
             }
         }
     }
     // 設置係統時區
     date_default_timezone_set($config['default_timezone']);
     // 監聽app_init
     APP_HOOK && Hook::listen('app_init');
 }
開發者ID:xuyi5918,項目名稱:ipensoft,代碼行數:52,代碼來源:App.php

示例3: testLoad

 public function testLoad()
 {
     $file = APP_PATH . 'config' . EXT;
     $config = array_change_key_case(include $file);
     $name = '_name_';
     $range = '_test_';
     $reflectedClass = new ReflectionClass('\\think\\Config');
     $reflectedPropertyConfig = $reflectedClass->getProperty('config');
     $reflectedPropertyConfig->setAccessible(true);
     $reflectedPropertyConfig->setValue([]);
     $this->assertEquals($config, Config::load($file, $name, $range));
     $this->assertNotEquals(null, Config::load($file, $name, $range));
 }
開發者ID:cnzin,項目名稱:think,代碼行數:13,代碼來源:configTest.php

示例4: buildCacheContent

 protected function buildCacheContent($module)
 {
     $content = '';
     $path = realpath(APP_PATH . $module) . DS;
     if ($module) {
         // 加載模塊配置
         $config = ThinkConfig::load(CONF_PATH . $module . 'config' . CONF_EXT);
         // 讀取數據庫配置文件
         $filename = CONF_PATH . $module . 'database' . CONF_EXT;
         ThinkConfig::load($filename, 'database');
         // 加載應用狀態配置
         if ($config['app_status']) {
             $config = ThinkConfig::load(CONF_PATH . $module . $config['app_status'] . CONF_EXT);
         }
         // 讀取擴展配置文件
         if (is_dir(CONF_PATH . $module . 'extra')) {
             $dir = CONF_PATH . $module . 'extra';
             $files = scandir($dir);
             foreach ($files as $file) {
                 if (strpos($file, CONF_EXT)) {
                     $filename = $dir . DS . $file;
                     ThinkConfig::load($filename, pathinfo($file, PATHINFO_FILENAME));
                 }
             }
         }
     }
     // 加載行為擴展文件
     if (is_file(CONF_PATH . $module . 'tags' . EXT)) {
         $content .= '\\think\\Hook::import(' . var_export(include CONF_PATH . $module . 'tags' . EXT, true) . ');' . PHP_EOL;
     }
     // 加載公共文件
     if (is_file($path . 'common' . EXT)) {
         $content .= substr(php_strip_whitespace($path . 'common' . EXT), 5) . PHP_EOL;
     }
     $content .= '\\think\\Config::set(' . var_export(ThinkConfig::get(), true) . ');';
     return $content;
 }
開發者ID:top-think,項目名稱:framework,代碼行數:37,代碼來源:Config.php

示例5: initModule

 private static function initModule($module, $config)
 {
     // 定位模塊目錄
     $module = COMMON_MODULE == $module || !APP_MULTI_MODULE ? '' : $module . DS;
     // 加載初始化文件
     if (is_file(APP_PATH . $module . 'init' . EXT)) {
         include APP_PATH . $module . 'init' . EXT;
     } else {
         $path = APP_PATH . $module;
         // 加載模塊配置
         $config = Config::load(APP_PATH . $module . 'config' . CONF_EXT);
         // 加載應用狀態配置
         if ($config['app_status']) {
             $config = Config::load(APP_PATH . $module . $config['app_status'] . CONF_EXT);
         }
         // 讀取擴展配置文件
         if ($config['extra_config_list']) {
             foreach ($config['extra_config_list'] as $name => $file) {
                 $filename = $path . $file . CONF_EXT;
                 Config::load($filename, is_string($name) ? $name : pathinfo($filename, PATHINFO_FILENAME));
             }
         }
         // 加載別名文件
         if (is_file($path . 'alias' . EXT)) {
             Loader::addMap(include $path . 'alias' . EXT);
         }
         // 加載行為擴展文件
         if (APP_HOOK && is_file($path . 'tags' . EXT)) {
             Hook::import(include $path . 'tags' . EXT);
         }
         // 加載公共文件
         if (is_file($path . 'common' . EXT)) {
             include $path . 'common' . EXT;
         }
         // 加載當前模塊語言包
         if ($config['lang_switch_on'] && $module) {
             Lang::load($path . 'lang' . DS . LANG_SET . EXT);
         }
     }
 }
開發者ID:xuyi5918,項目名稱:ipensoft,代碼行數:40,代碼來源:App.php

示例6: init

 /**
  * 初始化應用或模塊
  * @access public
  * @param string $module 模塊名
  * @return array
  */
 private static function init($module = '')
 {
     // 定位模塊目錄
     $module = $module ? $module . DS : '';
     // 加載初始化文件
     if (is_file(APP_PATH . $module . 'init' . EXT)) {
         include APP_PATH . $module . 'init' . EXT;
     } else {
         $path = APP_PATH . $module;
         // 加載模塊配置
         $config = Config::load(CONF_PATH . $module . 'config' . CONF_EXT);
         // 加載應用狀態配置
         if ($config['app_status']) {
             $config = Config::load(CONF_PATH . $module . $config['app_status'] . CONF_EXT);
         }
         // 讀取擴展配置文件
         if ($config['extra_config_list']) {
             foreach ($config['extra_config_list'] as $name => $file) {
                 $filename = CONF_PATH . $module . $file . CONF_EXT;
                 Config::load($filename, is_string($name) ? $name : pathinfo($filename, PATHINFO_FILENAME));
             }
         }
         // 加載別名文件
         if (is_file(CONF_PATH . $module . 'alias' . EXT)) {
             Loader::addClassMap(include CONF_PATH . $module . 'alias' . EXT);
         }
         // 加載行為擴展文件
         if (is_file(CONF_PATH . $module . 'tags' . EXT)) {
             Hook::import(include CONF_PATH . $module . 'tags' . EXT);
         }
         // 加載公共文件
         if (is_file($path . 'common' . EXT)) {
             include $path . 'common' . EXT;
         }
         // 加載當前模塊語言包
         if ($config['lang_switch_on'] && $module) {
             Lang::load($path . 'lang' . DS . Request::instance()->langset() . EXT);
         }
     }
     return Config::get();
 }
開發者ID:GDdark,項目名稱:cici,代碼行數:47,代碼來源:App.php

示例7: Model

<?php

// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006~2016 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: liu21st <liu21st@gmail.com>
// +----------------------------------------------------------------------
// 加載慣例配置文件 // 加載環境變量配置文件
\think\Config::load(CONF_PATH);
// 注冊錯誤和異常處理機製
\think\Error::register();
// 執行應用
new Model('asdfasdfsadf');
//\think\App::run()->send();
開發者ID:livingvirus,項目名稱:framework,代碼行數:18,代碼來源:base.php

示例8: init

 /**
  * 初始化應用或模塊
  * @access public
  * @param string $module 模塊名
  * @return array
  */
 private static function init($module = '')
 {
     // 定位模塊目錄
     $module = $module ? $module . DS : '';
     // 加載初始化文件
     if (is_file(APP_PATH . $module . 'init' . EXT)) {
         include APP_PATH . $module . 'init' . EXT;
     } elseif (is_file(RUNTIME_PATH . $module . 'init' . EXT)) {
         include RUNTIME_PATH . $module . 'init' . EXT;
     } else {
         $path = APP_PATH . $module;
         // 加載模塊配置
         $config = Config::load(CONF_PATH . $module . 'config' . CONF_EXT);
         // 讀取數據庫配置文件
         $filename = CONF_PATH . $module . 'database' . CONF_EXT;
         Config::load($filename, 'database');
         // 讀取擴展配置文件
         if (is_dir(CONF_PATH . $module . 'extra')) {
             $dir = CONF_PATH . $module . 'extra';
             $files = scandir($dir);
             foreach ($files as $file) {
                 if (strpos($file, CONF_EXT)) {
                     $filename = $dir . DS . $file;
                     Config::load($filename, pathinfo($file, PATHINFO_FILENAME));
                 }
             }
         }
         // 加載應用狀態配置
         if ($config['app_status']) {
             $config = Config::load(CONF_PATH . $module . $config['app_status'] . CONF_EXT);
         }
         // 加載行為擴展文件
         if (is_file(CONF_PATH . $module . 'tags' . EXT)) {
             Hook::import(include CONF_PATH . $module . 'tags' . EXT);
         }
         // 加載公共文件
         if (is_file($path . 'common' . EXT)) {
             include $path . 'common' . EXT;
         }
         // 加載當前模塊語言包
         if ($module) {
             Lang::load($path . 'lang' . DS . Request::instance()->langset() . EXT);
         }
     }
     return Config::get();
 }
開發者ID:pangPython,項目名稱:iNewsCMS,代碼行數:52,代碼來源:App.php


注:本文中的think\Config::load方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。