最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
php模板使用实例教程
时间:2022-07-02 10:47:06 编辑:袖梨 来源:一聚教程网
include ('template.inc'); //包含模板类 template.inc
//创建一个实例
$tpl = new Template("template");
//读入三个模板文件的内容,分别给变量"main", " child_header", " child_footer"
$tpl->set_file("main", "NestingMain.html");
$tpl->set_file("child_header", "NestingHeader.html");
$tpl->set_file("child_footer", "NestingFooter.html");
//将模板child_header, child_footer里的模板变量替换,并把最终结果分别赋给主模板中的header,footer
$var_array = array('title'=>'标题:表格的属性',
'author'=>'kiki',
);
//可以传递数组
$tpl->set_var($var_array);
$tpl->parse("header", "child_header");
$tpl->parse("footer", "child_footer");
//然后完成主模板内变量的替换,并输出主模板分析后的内容
$tpl->parse("myout", "main");
//输出
$tpl->p("myout");
?>
相关文章
- “十月朝,糍粑碌碌烧”说的是小雪时节的哪一项习俗 蚂蚁庄园11月22日答案早知道 11-25
- 以闪亮之名宠物礼包怎么样 11-25
- 崩坏星穹铁道星期日用什么光锥 11-25
- 崩坏星穹铁道星期日用什么光锥 崩铁星期日光锥推荐搭配介绍 11-25
- 崩坏星穹铁道星期日技能机制怎么样 崩铁星期日技能机制介绍 11-25
- 崩坏星穹铁道星期日遗器怎么选择 崩铁星期日遗器推荐搭配介绍 11-25