首页 > 代码库 > YII 2.x 模板文件的 beginBlock、beginContent、beginCache
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(); }
YII 2.x 模板文件的 beginBlock、beginContent、beginCache
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。