Index.php
455 字节
<?php
namespace app\index\controller;
use app\common\controller\Frontend;
use think\Config;
class Index extends Frontend
{
protected $noNeedLogin = '*';
protected $noNeedRight = '*';
protected $layout = '';
public function index()
{
// dd(1212);
// Config::set('exception_tmpl','212121212');
//1/0
// var_dump(config('exception_tmpl'));
// exit();
return $this->view->fetch();
}
}