使用post http方法的Zend Framework转发请求

时间:2014-07-25 10:56:22

标签: php http zend-framework post

使用Zend Framework 1.7。是否可以使用POST方法转发请求? 像这样:

$this->_forward('action','controller','module',array('method'=>'POST'));

1 个答案:

答案 0 :(得分:1)

是的,这是可能的,请尝试使用以下内容:

$this->_request->setPost(array('param_name' => $paramValue));
$this->_forward('actionName', 'controller', 'module');