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  = '<!--{';//左标记
$smarty->right_delimiter  = '}-->';//右标记
?>


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

此文章由 http://www.ositren.com 收集整理 ,地址为: http://www.ositren.com/htmls/527.html