1.構(gòu)造函數(shù):
控制器類(lèi)必須繼承了\think\Controller
類(lèi),才能使用:
方法_initialize
代碼:
<?php namespace app\lian\controller;use think\Controller;use think\Db;use think\Request;class Index extends Controller { public function _initialize() { echo 'init|||'; } public function hello() { return 'hello'; } }
地址:http://localhost/index.php/lian/index/hello