返回mvc应用目录......登陆

mvc应用目录架构

©李政2019-03-14 15:07:19177
app
    |admin
        |controller
            Index.php
         |view
             |index
                 index.php
    |home
        |controller
            Index.php
         |view
             |index
                 index.php
    
/**
*app/admin/controller/Index.php
*/
namespace app\admin\controller;
class Index
{
    public function index()
    {
        return 'home.html';
    }
}
/**
*app/admin/view/index/index.php
*/
<!DOCTYPE html>
<html>
    <body>
        后台视图窗口
    </body>
</html>


最新手记推荐

• 用composer安装thinkphp框架的步骤• 省市区接口说明• 用thinkphp,后台新增栏目• 管理员添加编辑删除• 管理员添加编辑删除

全部回复(0)我要回复

暂无评论~
  • 取消回复发送