数据块调用

<?=$this ->blocks[ 'block1']?>

 

数据块写法

<?php $this ->beginBlock( 'block1'); ?>
<h1>index</ h1>
<?php $this->endBlock ('block1'); ?>

 

检测数据块是否定义

<?php if (isset( $this ->blocks [ 'block1'])){ ?>
<?=
$this ->blocks[ 'block1']?>
<?php
 }else?>
   
 < h1>hello common</h1>
<?php } ?>