首页 > PHP资讯 > PHP培训技术 > smarty模版-初始化

smarty模版-初始化

PHP培训技术
php代码:
@header('content-Type: text/html; charset=utf-8');
/// 连接数据库服务器
require('lib/mysql.class.php');
$dbcharset = 'utf8';
$query = new dbQuery('localhost', 'root', '123123','guestbook');
require 'lib/Smarty/libs/Smarty.class.php';
// 初始化smarty
$smarty = new Smarty;
$smarty->compile_check = true; // 打开编译检查
$smarty->debugging = false;
$smarty->template_dir   = 'templates/'; //模板目录
$smarty->compile_dir    = 'templates_c/';//编译文件目录
$smarty->left_delimiter  = '';//右标记
?>

在公共页面common.php初始化smarty

PHP培训技术

本文由欣才IT学院整理发布,未经许可,禁止转载。
支持24不支持0