這篇文章主要介紹了thinkPHP5.0框架獨立配置與動態配置方法,結合實例形式分析了thinkPHP5.0框架獨立配置與靜態配置的功能、實現技巧與相關注意事項,需要的朋友可以參考下
本文實例講述了thinkPHP5.0框架獨立配置與動態配置方法。分享給大家供大家參考,具體如下:
獨立設定檔:
#新版支援設定檔分離,只需要設定extra_config_list
參數(在應用公共設定檔中)。
例如,不使用獨立設定檔的話,資料庫設定資訊應該是在config.php中設定如下:
##
/* 数据库设置 */ 'database' => [ // 数据库类型 'type' => 'mysql', // 服务器地址 'hostname' => '127.0.0.1', // 数据库名 'database' => 'thinkphp', // 数据库用户名 'username' => 'root', // 数据库密码 'password' => '', // 数据库连接端口 'hostport' => '', // 数据库连接参数 'params' => [], // 数据库编码默认采用utf8 'charset' => 'utf8', // 数据库表前缀 'prefix' => '', // 数据库调试模式 'debug' => false, ],
#
'extra_config_list' => ['database'],
/* 数据库设置 */ return [ // 数据库类型 'type' => 'mysql', // 服务器地址 'hostname' => '127.0.0.1', // 数据库名 'database' => 'thinkphp', // 数据库用户名 'username' => 'root', // 数据库密码 'password' => '', // 数据库连接端口 'hostport' => '', // 数据库连接参数 'params' => [], // 数据库编码默认采用utf8 'charset' => 'utf8', // 数据库表前缀 'prefix' => '', // 数据库调试模式 'debug' => false, ],
Config::get('database.type');
Config::get('database');
動態配置:
設定配置參數使用set方法動態設定參數,例如:Config::set('配置参数','配置值'); // 或者使用助手函数 config('配置参数','配置值');
#
Config::set([ '配置参数1'=>'配置值', '配置参数2'=>'配置值' ]); // 或者使用助手函数 config([ '配置参数1'=>'配置值', '配置参数2'=>'配置值' ]);
以上是thinkPHP5.0框架獨立配置與動態配置方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!