什么是 Smarty?
为什么要使用它?
用例和工作流程
语法比较
模板继承
最佳实践
速成教程
getConfigVars() - 返回给定的已加载配置变量值
数组 getConfigVars(字符串 varname);
如果未给出参数,则返回一个数组,其中包含所有已加载 配置文件变量
示例 14.26. getConfigVars()
<?php // get loaded config template var #foo# $myVar = $smarty->getConfigVars('foo'); // get all loaded config template vars $all_config_vars = $smarty->getConfigVars(); // take a look at them print_r($all_config_vars); ?>
另请参见 clearConfig()
, {config_load}
, configLoad()
和 getTemplateVars()
。