博客列表 >2-教学管理系统

2-教学管理系统

phpgit的博客
phpgit的博客原创
2018年01月22日 00:07:47826浏览

1.

建立一个Base.php  基类

<?php
namespace app\index\controller;
use think\Controller;

class Base extends Controller
{
   
}

QQ截图20180121235845.png

index.php 

<?php
namespace app\index\controller;
use app\index\controller\Base;

class Index extends Base
{
    public function index()
    {
        return $this->view->fetch();
    }
}

QQ截图20180122000331.png

分离模板  meta  header menu  footer

{include file="public/footer" /}

QQ截图20180122002934.png


声明:本文内容转载自脚本之家,由网友自发贡献,版权归原作者所有,如您发现涉嫌抄袭侵权,请联系admin@php.cn 核实处理。
全部评论
文明上网理性发言,请遵守新闻评论服务协议