一:視圖分層顯現:php
好比:在一個頁面中,頭部、底部固定不變,只有中間部分隨操做變換顯示。那麼能夠將中間部分切出來,剩餘部分用做固定框架,放入:app/views/layouts目錄中,起名爲:base.pthml,中間的部分存入相應的目錄中去。html
接下來,咱們看看base.phtml佈局app
<html> <title>分層顯示</title> <body> <p>分層渲染</p> <?php echo $this->getContent(); ?> </body> </html>
中間部分的html不做修改,框架
接下來看代碼部分,怎麼實現,controller:佈局
public function indexAction() { //渲染頁面,框架部分 $this->view->setTemplateAfter('common'); $this->view->pick("index/index"); }
二:phtml包含其餘頁面this
<?php $this->view->partial("header");?>