zend framework如何使用布局
最好实例讲解,手册看了不太懂
比如说我要实现
<html>
<head><title></title></head>
<body>
<div id="top"></div>
<div id="main"><?php echo $this->layout->content ?></div>
<div id="footer"></div>
</body>
</html>
要使用布局是不是要先进行什么配置?这里要如何替换top、main、footer的内容?content的内容在哪里赋值?