1
2
3
4
5
6
|
public function _before_hello(){ //在hello方法之前执行 echo ‘_before_hello‘ ; } public function _after_hello(){ //在hello方法之后执行 echo ‘_after_hello‘ ; } |
原文:http://www.cnblogs.com/chinalorin/p/5855290.html