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:
setCacheDir() — 设置缓存目录
Smarty setCacheDir(string cache_dir);
Example 14.43. setCacheDir()
<?php // 设置缓存目录 $smarty->setCacheDir('./cache'); // 方法连用 $smarty->setTemplateDir('./templates') ->setCompileDir('./templates_c') ->setCacheDir('./cache'); ?>
参见
getCacheDir()
和
$cache_dir
.