1 Star 0 Fork 77

老渺儿 / ebookapp

forked from aming / ebookapp 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
smarty_inc.php 704 Bytes
一键复制 编辑 原始数据 按行查看 历史
aming 提交于 2014-07-23 09:40 . 重新修改适应原抓取网站的变化
<?php
include_once(WEB_ROOT."smarty/Smarty.class.php"); //包含smarty类文件
$smarty = new Smarty(); //建立smarty实例对象$smarty
$smarty->config_dir=WEB_ROOT."smarty/Config_File.class.php"; // 目录变量
$smarty->caching=false; //是否使用缓存,项目在调试期间,不建议启用缓存
$smarty->template_dir = WEB_ROOT."templates"; //设置模板目录
$smarty->compile_dir = WEB_ROOT."templates_c"; //设置编译目录
$smarty->cache_dir = WEB_ROOT."smarty_cache"; //缓存文件夹
//----------------------------------------------------
//左右边界符,默认为{},但实际应用当中容易与JavaScript相冲突
//----------------------------------------------------
$smarty->left_delimiter = "{#";
$smarty->right_delimiter = "#}";
?>
1
https://gitee.com/lovenull/ebookapp.git
git@gitee.com:lovenull/ebookapp.git
lovenull
ebookapp
ebookapp
master

搜索帮助