thinkphp在某种方法之前与之后执行的方法

1
2
3
4
5
6
public function _before_hello(){    //在hello方法之前执行
    echo '_before_hello';
}
public function _after_hello(){    //在hello方法之后执行
    echo '_after_hello';
}
posted @ 2016-09-09 09:21  chinalorin'blogs  阅读(945)  评论(0编辑  收藏  举报