get_config_vars()

get_config_vars()

get_config_vars() -- returns the given loaded config variable value

Description

array get_config_vars ( [string varname])

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 them
print_r($config_vars);
?>

See also clear_config(), {config_load}, config_load() and get_template_vars().

© Copyright 2003-2023 www.php-editors.com. The ultimate PHP Editor and PHP IDE site.