Smarty Manual
This manual is provided as a courtesy. It is not an official source. Please check smarty.php.net for updated information.
If no parameter is given, an array of all loaded config variables is returned.
Example 13-1. get_config_vars()
<?php// 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 themprint_r($config_vars);?>
See also clear_config(), {config_load}, config_load() and get_template_vars().