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:
get_config_vars() — returns the given loaded config variable value
array get_config_vars(string varname);
If no parameter is given, an array of all loaded config variables is returned.
Example 13.16. get_config_vars()
<?php // get loaded config template var #foo# $myVar = $smarty->get_config_vars('foo'); // get all loaded config template vars $all_config_vars = $smarty->get_config_vars(); // take a look at them print_r($all_config_vars); ?>
See also
clear_config()
,
{config_load}
,
config_load()
and
get_template_vars()
.