摘要:<?phpnamespace app\admin\controller;use think\Controller;class Index extends Controller{ public function index() { return $this->fetch();&nbs
<?php
namespace app\admin\controller;
use think\Controller;
class Index extends Controller
{
public function index()
{
return $this->fetch();
}
}
在tp5中只需要給類庫(kù)正確定義所在的命名空間,并且命名空間的路徑與類庫(kù)文件的目錄一致,那么就可以實(shí)現(xiàn)類的自動(dòng)加載,從而實(shí)現(xiàn)真正的惰性加載,所以admin的命名空間應(yīng)為app\admin\controller:
批改老師:韋小寶批改時(shí)間:2019-03-04 09:17:28
老師總結(jié):寫的很簡(jiǎn)潔 總結(jié)的也沒(méi)毛病 繼續(xù)加油吧!