Smarty Icon

You may use the Smarty logo according to the trademark notice.

Smarty Template Engine Smarty Template Engine

For sponsorship, advertising, news or other inquiries, contact us at:

Sites Using Smarty

Advertisement

Name

get_config_vars

array get_config_vars(string varname);

Gibt den Wert der Konfigurationsvariable zurück. Wenn kein Parameter übergeben wird, wird ein Array aller geladenen Variablen zurück gegeben.

Example 13.15. get_config_vars


<?php
// variable 'foo' zuweisen
$foo = $smarty->get_config_vars('foo');

// alle geladenen konfigurationsvariablen zuweisen
$config_vars = $smarty->get_config_vars();

// ausgabe
print_r($config_vars);
?>