Smarty 图标

你可以根据商标声明使用 Smarty Logo。

Smarty Template Engine Smarty Template Engine

对于赞助、广告、新闻或其他询问,请通过以下方式联系我们

使用 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()