将操作中的变量传递给ZF中的另一个操作视图

时间:2013-09-20 13:11:07

标签: php zend-framework variable-assignment

我想知道zend是否允许这件事,如果是,那么该怎么做?

public xAction()
{
// code here
}

public yAction(){
 $this->_helper->viewRenderer('x');
// code here....
// $this->view->variable= $somedata;
}

**x.phtml**

<?php echo $this->variable; ?>

1 个答案:

答案 0 :(得分:1)

Zend允许渲染不同的视图脚本。 你可以这样做:$this->_helper->viewRenderer('controller/action', null, true);
More info here(示例#11)