本文整理汇总了PHP中Zend_Controller_Action::_forward方法的典型用法代码示例。如果您正苦于以下问题:PHP Zend_Controller_Action::_forward方法的具体用法?PHP Zend_Controller_Action::_forward怎么用?PHP Zend_Controller_Action::_forward使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Zend_Controller_Action
的用法示例。
在下文中一共展示了Zend_Controller_Action::_forward方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: _goto
/**
* 跳转到其他动作控制器,并修改请求中的MVC相关参数。
*
* @param string $action
* @param string $controller
* @param string $module
* @param array $params
* @return void
*/
public function _goto($action, $controller = null, $module = null, array $params = null)
{
$this->_setParam($this->_request->getActionKey(), $action);
if (null !== $controller) {
$this->_setParam($this->_request->getControllerKey(), $controller);
}
if (null !== $module) {
$this->_setParam($this->_request->getModuleKey(), $module);
}
parent::_forward($action, $controller, $module, $params);
}
示例2: _go
/**
* _forward
*
* @param mixed $action Action name
* @param string $controller Controller name
* @param string $module Module name
* @param mixed $params Parameters
* @access private
* @return void
*/
protected function _go($action, $controller = null, $module = null, $params = null)
{
if ($this->_request->isXmlHttpRequest()) {
return;
}
parent::_forward($action, $controller, $module, $params);
return;
}