模板Base.php文件

子枫 [Rainy]
发布于 2023-12-14
239 浏览
<?php
// +----------------------------------------------------------------------
// | 子枫CMS管理系统
// +----------------------------------------------------------------------
// | Copyright (c) http://store.zf-sys.com/
// | 子枫CMS管理系统提供免费使用,可使用此框架进行二次开发
// +----------------------------------------------------------------------
// | Author: 子枫 <287851074@qq.com>
// | 子枫社区: http://bbs.90ckm.com/
// +----------------------------------------------------------------------
namespace 模板名\Controller;
use think\Controller;
use think\facade\Request;
use think\Db;
use app\index\Controller\Base as Bas;
class Base extends Bas
{
public function __construct ()
{
//使用true
parent::__construct(true);//v0.0.9 新增优化 true
}
}
这里继承的是app\index\Controller\Base
parent::__construct(true); //v0.0.9新增优化
评论 (56)
评论输入框评论列表
没有任何评论