mvc应用目录架构

Original 2019-03-14 15:07:19 177
abstract:app     |admin         |controller             Index.php     
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>


Correcting teacher:韦小宝Correction time:2019-03-14 15:29:53
Teacher's summary:你这个方法中渲染方法不对吧 有没有注意看 项目跑起来了嘛

Release Notes

Popular Entries