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

clear_config

void clear_config(string var);

Löscht alle zugewiesenen Konfigurations-Variablen. Wenn der Variablenname übergeben wird, wird nur diese Variable gelöscht.

Example 13.10. clear_config


<?php
// alle config-variablen l&ouml;schen
$smarty->clear_config();

// eine l&ouml;schen
$smarty->clear_config('foobar');
?>