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

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

方法_initialize

代碼:

Android培訓(xùn),安卓培訓(xùn),手機(jī)開發(fā)培訓(xùn),移動開發(fā)培訓(xùn),云培訓(xùn)培訓(xùn)

<?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培訓(xùn),安卓培訓(xùn),手機(jī)開發(fā)培訓(xùn),移動開發(fā)培訓(xùn),云培訓(xùn)培訓(xùn)

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

網(wǎng)友評論