两个简单模板:
{title} {title} {body}
{title} {title} {body}
必须先安装Http_Template_IT类库
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