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() — set the directory where compiled templates are stored
Smarty setCompileDir(string compile_dir);
Example 14.44. setCompileDir()
<?php // set directory where compiled templates are stored $smarty->setCompileDir('./templates_c'); // chaining of method calls $smarty->setTemplateDir('./templates') ->setCompileDir('./templates_c') ->setCacheDir('./cache'); ?>
See also
getCompileDir()
and
$compile_dir
.