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