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