public function _before_hello(){    //在hello方法之前执行
	echo '_before_hello';
}
public function _after_hello(){    //在hello方法之后执行
	echo '_after_hello';
}