What is Smarty?
Why use it?
Use Cases and Work Flow
Syntax Comparison
Template Inheritance
Best Practices
Crash Course
You may use the Smarty logo according to the trademark notice.
For sponsorship, advertising, news or other inquiries, contact us at:
保存模板缓存文件的目录名称,默认是./cache
。
这意味着Smarty将进入cache/
目录查找缓存文件并把缓存文件当作PHP来执行。
该目录必须可写入,
详细参见安装。
你也可以建立自定义缓存来控制缓存文件,这将忽略本设置。
参见
$use_sub_dirs
。
本设置必须是相对或绝对路径,include_path不能作为写文件的目录。
不建议把该目录放到web根目录中。
在Smarty 3.1之后,$cache_dir属性不能直接访问,需使用 getCacheDir()
和
setCacheDir()
来进行存取。
参见
getCacheDir()
,
setCacheDir()
,
$caching
,
$use_sub_dirs
,
$cache_lifetime
,
$cache_modified_check
和
缓存.