Smarty配置文件!

<?php
/*
 * Created on 2009-1-13
 * Powered by simonzhd
 */

include_once("temp_inc.php"); //包含模板设置文件

include_once("Smarty/Smarty.class.php"); //包含smarty类文件

$smarty = new Smarty(); //建立smarty实例对象$smarty

$smarty->config_dir="Smarty/Config_File.class.php";  // 目录变量

$smarty->caching=false; //是否使用缓存,项目在调试期间,不建议启用缓存

$smarty->compile_id = "$tempname";//

$smarty->template_dir = "./templates/$tempname"; //设置模板目录

$smarty->compile_dir = "./templates_c"; //设置编译目录

$smarty->cache_dir = "./smarty_cache"; //缓存文件夹

//----------------------------------------------------

//左右边界符,默认为{},但实际应用当中容易与JavaScript相冲突

//----------------------------------------------------

$smarty->left_delimiter = "{";

$smarty->right_delimiter = "}";

?>

posted on 2009-05-19 12:22  5201314  阅读(476)  评论(0编辑  收藏  举报

导航