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() — retorna el valor asignado a la variable de configuración
array get_config_vars(string varname);
Si no tiene un parámetro asignado, un arreglo de todas las variables de los archivos de configuración es retornado.
Example 13.16. 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 them print_r($config_vars); ?>
Ver también clear_config(), {config_load}, config_load() y get_template_vars().