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:
getConfigVars() — 取得预配置变量
array getConfigVars(string varname);
当不设置参数的时候,该函数将返回全部的预配置变量。
Example 14.26. getConfigVars()
<?php // 取得预配置变量 #foo# $myVar = $smarty->getConfigVars('foo'); // 取得全部预配置变量 $all_config_vars = $smarty->getConfigVars(); // 看看 print_r($all_config_vars); ?>
参见
clearConfig()
,
{config_load}
,
configLoad()
和
getTemplateVars()
.