兩個簡單模板:
復制代碼 代碼如下:
<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