我的配置方法

来源:5-3 Smarty的配置与实例化

吃的三碗面

2015-03-01 18:37

<?php
define('SMARTY_DIR', 'E:wamp/www/SmartyTest/smarty/');
require_once (SMARTY_DIR.'Smarty.class.php');
$smarty=new Smarty();
//指定HTML模板的地址
$smarty->setTemplateDir('./templates/');
//编译后文件存放的地址
$smarty->setCompileDir('./templates_c/');
//指定配置地址
$smarty->setConfigDir('./configs/');
//是否开启缓存
$smarty->caching=FALSE;
//指定缓存的地址
$smarty->setCacheDir('./cache/');
//指定缓存的时间
$smarty->cache_lifetime= 60;
//定义左右定界符
$smarty->left_delimiter = "{";
$smarty->right_delimiter= "}";


写回答 关注

1回答

  • PengCheng
    2015-03-03 10:01:36

    挺好的。

MVC架构模式分析与设计

通过学习MVC理论知识,由浅入深带您实现人生第一个MVC框架

82396 学习 · 929 问题

查看课程

相似问题