程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> YII 2.x 模板文件的 beginBlock、beginContent、beginCache,

YII 2.x 模板文件的 beginBlock、beginContent、beginCache,

編輯:關於PHP編程

YII 2.x 模板文件的 beginBlock、beginContent、beginCache,


 

echo '-----------beginBlock--------------------- <br />';
$this->beginBlock('block1',  false);
    echo 'beginBlock demo 1 <br />';
$this->endBlock();
echo $this->blocks['block1'];


$this->beginBlock('block2',  true);
    echo 'beginBlock demo 2 <br />';
$this->endBlock();

echo '-----------beginContent--------------------- <br />';
// 渲染內容,傳遞給文件
$this->beginContent('@app/views/layouts/main.php',  array('param1'=>'param1_value'));
    echo 'beginContent demo1...';
$this->endContent();


echo '-----------beginCache--------------------- <br />';
if($this->beginCache('beginCache1')){
    echo $this->renderDynamic("echo 'beginCache demo1... <br />';");
    $this->endCache();
}

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved