(Yaf >=1.0.0)
Yaf_Action_Abstract::execute — Action 入口点
用户应该始终为一个 action 定义此方法,这是 action 的入口点。 Yaf_Action_Abstract::execute() 可能具有参数。
注意:
从请求中检索到的值是不安全的。在使用它之前,您应该进行一些过滤工作。
args
示例 #1 Yaf_Action_Abstract::execute()示例
<?php
/**
* 一个控制器示例
*/
类 ProductController 扩展 Yaf_Controller_Abstract {
受保护的 $actions = 数组(
"index" => "actions/Index.php",
);
}
?>
示例 #2 Yaf_Action_Abstract::execute()示例
<?php
/**
* ListAction
*/
类 ListAction 扩展 Yaf_Action_Abstract {
公共函数 execute ($name, $id) {
断言($name == $this->getRequest()->getParam("name"));
断言($id == $this->getRequest()->getParam("id"));
}
}
?>
以上示例将输出类似于以下内容
/** * Now assuming we are using the Yaf_Route_Static route * for request: http://yourdomain/product/list/name/yaf/id/22 * will result: */ bool(true) bool(true)