1.構(gòu)造函數(shù):

控制器類必須繼承了\think\Controller類,才能使用:

方法_initialize

代碼:

Android培訓,安卓培訓,手機開發(fā)培訓,移動開發(fā)培訓,云培訓培訓

<?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';
    }
}

Android培訓,安卓培訓,手機開發(fā)培訓,移動開發(fā)培訓,云培訓培訓

地址:http://localhost/index.php/lian/index/hello

網(wǎng)友評論