我有一个动作,successAction(),它使用我的views文件夹中的文件success.phtml,如何告诉我希望它使用success2.phtml文件的动作
答案 0 :(得分:9)
使用Zend_Controller_Action
' s render
。这将在 controller-name / success2.phtml
class ControllerName_Controller_Action extends Zend_Controller_Action
{
public function successAction()
{
$this->render("success2");
}
}
您应该read the docs on Zend Controller's了解更多信息。
答案 1 :(得分:2)
$this->render('success2');