Tag: zend layout

如何在Zend Framework中切换布局文件?

我相信这是一个简单的单线程,但我似乎无法find它。 我怎样才能使用不同的布局文件进行特定的操作? 更新:这对我工作,谢谢! // Within controller $this->_helper->_layout->setLayout('other-layout') //other-layout.phtml //Within view script <?php $this->layout()->setLayout('other-layout'); ?>