php smarty模板总配置不上 不知道是哪里搞错了 请大师指点一下 10
config.php代码如下
php
header('Content-Type:text/html;charset=gb2312');
/* 定义服务器的绝对路径 */
define('BASE_PATH','E:/AppServ/www/mr/']);
/* 定义Smarty目录的绝对路径 */
define('SMARTY_PATH','smarty/');
/* 加载Smarty类库文件 */
require BASE_PATH.SMARTY_PATH.'Smarty.class.php';
/* 实例化一个Smarty对象 */
$smarty = new Smarty;
/* 定义各个目录的路径 */
$smarty->template_dir = BASE_PATH.SMARTY_PATH.'templates/';
$smarty->compile_dir = BASE_PATH.SMARTY_PATH.'templates_c/';
$smarty->config_dir = BASE_PATH.SMARTY_PATH.'configs/';
$smarty->cache_dir = BASE_PATH.SMARTY_PATH.'cache/';
$smarty->left_delimiter = '{%';
$smarty->right_delimiter = '%}';
$smarty->caching = false;
$smarty->debugging = false;
?> 展开
以下是我的配置(已成功):
header("Content-Type:text/html;charset=gb2312");
define("ROOT_PATH",$_SERVER['DOCUMENT_ROOT'].'/leaveword/');
include(ROOT_PATH.'../smarty/Smarty.class.php'); //加载smarty模板
$smarty=new Smarty(); //建立一个smarty的实例对象
$smarty->template_dir='../template/';//模板文件的目录
$smarty->compile_dir='../template_c/';//编译文件的目录
$smarty->cache_dir='../cache/';//缓存目录
$smarty->config_dir='../config/';//配置文件的目录
$smarty->left_delimiter="{%";//模板文件的做的左标记
$smarty->right_delimiter="%}";//模板文件的右标记
$smarty->caching=false;//在调试期间,建议关闭缓存
$smarty->debugging=false;