0

我想知道zend是否允许这件事,如果是的话比怎么做?

public xAction()
{
// code here
}

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

**x.phtml**

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

1 回答 1

1

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

于 2013-09-20T13:25:26.333 回答