在Zend视图助手中,有一个基于路由表输出URL的函数url(),例如
$this->url(array('controller' => 'comments','action' => 'add')
在控制器中怎么做同样的事情?特别是我想使用控制器/动作语法而不是标准URL设置Zend表单的操作URL,例如
$form = new Zend_Form; $form->setMethod('post')->setAction( $this->url(array('controller' => 'comments','action' => 'add')) );
有一个操作帮助器:
原文链接:https://www.f2er.com/php/140128.htmlZend_Controller_Action_Helper_Url
.在动作控制器中,您可以使用以下命令访问它:
$this->_helper->url($action [,$controller [,$module [,$params]]]);
要么:
$this->_helper->url->url(array(...));
或者,您也可以使用视图助手:
$this->view->url(...);