求助!smarty 3.07的配制方法

小弟是PHP的新手,想请问一下各位大侠如何配置smarty 3.07

作者: DullRed   发布时间: 2011-05-27

PHP code
<?php
    include "../libs/Smarty.class.php";//加入smarty文件
$NowPathArray=explode("test",str_replace("\\","/",dirname(__FILE__))) ;
    @define("root_path", $NowPathArray[0]);
    @define('__SITE_ROOT', root_path."test");
    $tpl = new Smarty();
    $tpl->template_dir = __SITE_ROOT . "/templates/";、、模板文件
    $tpl->compile_dir = __SITE_ROOT . "/templates_c/";//缓存垃圾文件
    $tpl->config_dir = __SITE_ROOT . "/configs/";
    $tpl->cache_dir = __SITE_ROOT . "/cache/";//缓存
    $tpl->left_delimiter = '<{';
    $tpl->right_delimiter = '}>';
?> 

作者: zy205817   发布时间: 2011-05-27

该回复于2011-05-27 13:31:33被管理员删除

  • 对我有用[0]
  • 丢个板砖[0]
  • 引用
  • 举报
  • 管理
  • TOP
#3楼 得分:0回复于:2011-05-27 13:11:32
能再详细一点吗?包括文件夹的创建,还有测试文件

作者: zmzkkk   发布时间: 2011-05-27

给你个链接,你看看,自己就会看懂的!http://bbs.blueidea.com/viewthread.php?tid=2405738

作者: DullRed   发布时间: 2011-05-27