🔥码云GVP开源项目 12k star Uniapp+ElementUI 功能强大 支持多语言、二开方便! 广告
视图` index2.php`和`common.php` ***** index2.php代码 ``` <h1>hello index2</h1> <?php $this->beginBlock('block1'); ?> <h1>this is index2 block</h1> <?php $this->endBlock();?> ``` ***** common.php代码 ``` <!DOCTYPE html> <html lang="zh-cn"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <!-- <h1>hello common</h1>--> <?php if(isset($this->blocks['block1'])):?> <?= $this->blocks['block1']?> <?php else:?> <h1>hello common</h1> <?php endif;?> <?=$content;?> </body> </html> ```