Zend Framework: Render multiple Views in one Layout

前端 未结 4 1037
终归单人心
终归单人心 2020-12-24 09:37

I want to generate a dynamic site using Zend_Layout.

My layout (/application/layouts/scripts/layout.phtml) contains the following lines:

...        
         


        
4条回答
  •  一个人的身影
    2020-12-24 10:17

    You can use the not so speed performant

    $this->action()
    

    or you try it with

    $this->partial()
    

    (see http://framework.zend.com/manual/en/zend.view.helpers.html#zend.view.helpers.initial.partial )

提交回复
热议问题