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:
configLoad() — 载入预配置的变量
void configLoad(string file,
string section);
该函数将从文件中载入预配置的变量,功能等同{config_load}
函数。
从Smarty 2.4.0开始,当程序调用fetch()
和 display()
的时候,预配置文件才会被载入并赋值,同时
configLoad()
加载的变量总是全局的变量。
如果希望更快速地载入预配置变量,请开启
$force_compile
和
$compile_check
配置。
Example 14.16. configLoad()
<?php // 载入文件中预配置的变量 $smarty->configLoad('my.conf'); // 载入部分变量 $smarty->configLoad('my.conf', 'foobar'); ?>