我想知道zend是否允许这件事,如果是,那么该怎么做?
public xAction()
{
// code here
}
public yAction(){
$this->_helper->viewRenderer('x');
// code here....
// $this->view->variable= $somedata;
}
**x.phtml**
<?php echo $this->variable; ?>
答案 0 :(得分:1)
Zend允许渲染不同的视图脚本。
你可以这样做:$this->_helper->viewRenderer('controller/action', null, true);
More info here(示例#11)