PHP Conference Japan 2024

Yaf_Action_Abstract::execute

(Yaf >=1.0.0)

Yaf_Action_Abstract::executeAction 入口点

描述

抽象 公共Yaf_Action_Abstract::execute(混合 ...$args): 混合

用户应该始终为一个 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)

参见

添加注释

用户贡献的注释

此页面没有用户贡献的注释。
To Top