AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
视图` 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> ```