我如何在boostrap中使用zend_layout
我是初学者。我在 zend layout.phtml 中有以下 div 结构
<div id='outer'>//start outer
<div id='header'>//start header......</div>// end header
<div id='content'>//start content......</div>// end content
<div id='footer'>//start footer......</div>// end footer
</div>// end outer
在这里我想将页面分开,例如 header.phtml 用于页眉部分,footer.phtml 用于页脚部分。我如何在 bootsrap 文件中使用 zend_layout 来实现上述结构
I am beginner.I have the following div structure in zend layout.phtml
<div id='outer'>//start outer
<div id='header'>//start header......</div>// end header
<div id='content'>//start content......</div>// end content
<div id='footer'>//start footer......</div>// end footer
</div>// end outer
Here i want to separate the page like header.phtml for header part and footer.phtml for footer part. How can i use zend_layout in bootsrap file for the above structure
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将此行添加到您的引导文件中:
编辑:
要在不同文件中分隔页眉和页脚,请使用以下代码:
Add this line to your bootstrap file:
EDIT:
To separate header and footer in distinct files use this code:
如果我理解你想用不同文件中包含的各自内容填充这些 DIV。您可以在视图中执行此操作,如下所示:
在这里您可以分别管理 header.phtml、content.phtml 和 footer.phtml。
If I understand you want to fill these DIVs with their respective content contained in different files. You can do it in view something like this:
Here you can manage header.phtml, content.phtml and footer.phtml separately.