最新回答 / Ben1993
// 模板常量 'tpl_replace_string' => [ '__STATIC__' => Env::get('STATIC_PATH', '/static'), '__COMMON__' => Env::get('STATIC_PATH', '/static') . '/common', ]
2018-07-09
最新回答 / 封雪凄凄
可以使用__construct,但你需要引用父类Controller下的__construct,同时use think\Request;
use think\Controller; use think\Request; class Index extends Controller{ public function __construct(Request $request) { parent::__construct($request);
2018-07-09
最赞回答 / 慕雪5353966
应该是版本问题。龙哥的是老版本的tp5在新版本的tp5核心文件helper.php是这样定义view的。function view($template = '', $vars = [], $code = 200, $filter = null)
2018-07-09
最赞回答 / 冷月萧锋
if (is_array($val)) { foreach ($val as $k => $v) { $item = $name . '_' . strtoupper($k); putenv("$item=$v"); } } else { putenv("$name=$val"); //写入环境变量,才能在打印$_ENV文件的时候显示出来配...
2018-06-30