php Http_Template_IT类库进行模板替换
两个简单模板:
必须先安装Http_Template_IT类库
在浏览器中写入如下,会发现模板替换效果:
http://localhost:8082/file:/F:/php/phpcode/23/23.4.3/23.4.3.php?template=T2
http://localhost:8082/file:/F:/php/phpcode/23/23.4.3/23.4.3.php?template=T1
代码如下:
<html> <head> <title>{title}</title> </head> <body> <font color=red size=6><center>{title}</center></font> <hr> <pre>{body}</pre> </body> </html>
代码如下:
<html> <head> <title>{title}</title> </head> <body> <font color=green size=7><center>{title}</center></font> <pre>{body}</pre> </body> </html>
必须先安装Http_Template_IT类库
代码如下:
<?php require_once "HTML/Template/IT.php"; //创建新的HTML_Template_IT对象,其中参数为模版文件所在路径 $template = new HTML_Template_IT('templates/'); //读取模版文件,通过读取地址栏上的参数获得模版信息 $template->loadTemplateFile($_GET['template'].".htm"); //设置模版中的参数 $template->setVariable('title', 'HTML_Template_IT'); $template->setVariable('body', 'Hello World'); //显示页面 $template->show(); ?>
在浏览器中写入如下,会发现模板替换效果:
http://localhost:8082/file:/F:/php/phpcode/23/23.4.3/23.4.3.php?template=T2
http://localhost:8082/file:/F:/php/phpcode/23/23.4.3/23.4.3.php?template=T1
相关推荐
zyyjay 2020-11-09
xuebingnan 2020-11-05
samtrue 2020-11-22
stefan0 2020-11-22
yifangs 2020-10-13
songshijiazuaa 2020-09-24
hebiwtc 2020-09-18
天步 2020-09-17
83911535 2020-11-13
whatsyourname 2020-11-13
zhouyuqi 2020-11-10
Noneyes 2020-11-10
mathchao 2020-10-28
王志龙 2020-10-28
wwwsurfphpseocom 2020-10-28
diskingchuan 2020-10-23
savorTheFlavor 2020-10-23