<!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=gb2312" />
<title>smarty 中文乱码解决方法</title>
</head>
首页 >
php框架
PHP smarty模板入门教程
1.php在php程序中使用模板的示例。
a.tpl一个简单的smarty模板文件。
*/
//1.php在php程序中使用模板的示例。
php smarty模板生成静态html页面代码
include('./www.phprm.com/smarty/smarty.class.php');
$smarty = new smarty();
$smarty->template_dir = "templates/";
$smarty->compile_dir = "templates_c/";
$smarty->left_delimiter = "<{";
$smarty->right_delimiter = "}>";