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:
addTemplateDir() — 增加一个模板文件目录
Smarty addTemplateDir(string|array template_dir,
string key);
Example 14.3. addTemplateDir()
<?php // 增加一个模板文件的目录 $smarty->addTemplateDir('./templates_1'); // 增加一个模板文件的目录并指定一个数组键值 $smarty->addTemplateDir('./templates_1', 'one'); // 以数组的方式加入多个模板文件目录,并为每个目录设定一个键值。 $smarty->addTemplateDir(array( 'two' => './templates_2', 'three' => './templates_3', )); // 显示全部的模板目录 var_dump($smarty->getTemplateDir()); // 方法连用 $smarty->setTemplateDir('./templates') ->addTemplateDir('./templates_1', 'one') ->addTemplateDir('./templates_2', 'two'); ?>