複製程式碼程式碼如下:
require_once("Smarty/libs/Smarty.class.php"); require
$smarty = new smarty();
$smarty->templates_dir="templates";
$s ->templates_c_dir="templates_c";
$smarty->right_delimiter="}>";
$smarty->assign("title","你成功了");
$smarty->display("test.html");
$content=$smarty->fetch("test.html");
$fp=fopen("ok.html","w");
fwrite($fp,$content);
fclose($fp);
? >
http://www.bkjia.com/PHPjc/317255.htmlwww.bkjia.comtruehttp: //www.bkjia.com/PHPjc/317255.htmlTechArticle複製程式碼如下: ? require_once("Smarty/libs/Smarty.class.php"); $smarty= newsmarty(); $smarty-templates_dir="模板"; $smarty-templates_c_dir="templates_c"; $smarty-le...