1.构造函数:

控制器类必须继承了\think\Controller类,才能使用:

方法_initialize

代码:

Android培训,安卓培训,手机开发培训,移动开发培训,云培训培训

<?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培训,安卓培训,手机开发培训,移动开发培训,云培训培训

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

网友评论