#### 1. 配置信息讀取類 --- Pbootcms 版本:2020年10月07日 更新的 V3.0.3 查看配置信息讀取類:`core/basic/Config.php` 的 `loadConfig()` 方法 在該方法中發現以下代碼,此處就是引入自己創建的配置文件 ```php // 載入擴展的配置文件 $ext_path = CONF_PATH . '/ext'; if (is_dir($ext_path) && function_exists('scandir')) { $files = scandir($ext_path); for ($i = 0; $i < count($files); $i ++) { $file = $ext_path . '/' . $files[$i]; if (is_file($file)) { $config = require $file; $configs = mult_array_merge($configs, $config); } } } ``` #### 2. 創建配置文件 --- 創建擴展配置文件:`config/ext/liang.php` ```php <?php return [ 'qiniu' => [ 'open' => true, 'bucket' => '', 'domain' => '', 'accessKey' => '', 'secretKey' => '', ] ]; ``` #### 3. 讀取配置信息 --- 在任意類(控制器、核心類庫)中都可以讀取配置信息 ```php $qiniu = \core\basic\Config::get('qiniu'); $open = \core\basic\Config::get('qiniu.open'); ``` ```php array(5) { ["open"]=> bool(true) ["bucket"]=> string(0) "" ["domain"]=> string(0) "" ["accessKey"]=> string(0) "" ["secretKey"]=> string(0) "" } bool(true) ```