我不太确定这一点,但从聪明的说明阅读http://www.smarty.net/docs/en/installing.smarty.basic.tpl,我必须设置 $template_dir、$compile_dir、$config_dir、和 $cache_dir 每次我有一个新的 PHP 脚本时。换句话说,我必须为每个 PHP 脚本添加以下代码行:
$smarty->setTemplateDir('/.../templates/');
$smarty->setCompileDir('/...templates_c/');
$smarty->setConfigDir('/.../configs/');
$smarty->setCacheDir('/.../cache/');
那是对的吗?你们有没有采取任何“捷径”来避免这种情况?