thinkphp5.1 如何设置 config的 配置参数
使用 config代码即可
需要先加入
use think\facade\Config;
再使用下面代码
Config::set('template.view_path','templates/'); 设置模板路径
使用 config代码即可
需要先加入
use think\facade\Config;
再使用下面代码
Config::set('template.view_path','templates/'); 设置模板路径
Config::set('template.view_suffix','htm'); //设置模板格式
Config::set('template.taglib_pre_load','app\home\tagLib\Jr');