码迷,mamicode.com
首页 > 其他好文 > 详细

tp5控制器初始化

时间:2020-05-08 09:38:41      阅读:47      评论:0      收藏:0      [点我收藏+]

标签:containe   public   container   访问   namespace   func   extend   UNC   function   

namespace app\index\controller;

use think\Controller;

class Index extends Controller
{

    public function _initialize()
    {
        echo ‘init<br/>‘;
    }
    
    public function hello()
    {
        return ‘hello‘;
    }
    
    public function data()
    {
        return ‘data‘;
    }
}

如果访问
http://localhost/index.php/index/Index/hello

会输出

init
hello

如果访问
http://localhost/index.php/index/Index/data

会输出

init
data

tp5控制器初始化

标签:containe   public   container   访问   namespace   func   extend   UNC   function   

原文地址:https://www.cnblogs.com/mmore123/p/12848306.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!