get_config_vars

array get_config_vars ( [string varname])

This returns the given loaded config variable value. If no parameter is given, an array of all loaded config variables is returned.

Пример 13-15. get_config_vars

// get loaded config template var 'foo'
$foo = $smarty->get_config_vars('foo');

// get all loaded config template vars
$config_vars = $smarty->get_config_vars();

// take a look at them
print_r($config_vars);