php smarty模板总配置不上 不知道是哪里搞错了 请大师指点一下 10

我使用appserv。。。。smarty放E:\AppServ\www\mr文件下我买了一本书但是讲的含糊不清配置总搞不好请大师看一下是哪里错了config.php代码如... 我使用appserv 。。。。smarty放E:\AppServ\www\mr文件下 我买了一本书 但是讲的含糊不清 配置总搞不好 请大师看一下是哪里错了
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;
?>
展开
 我来答
朴素且通达灬熊猫l
2010-10-28 · 超过48用户采纳过TA的回答
知道小有建树答主
回答量:175
采纳率:0%
帮助的人:56.8万
展开全部

以下是我的配置(已成功):

 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;

推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式