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:
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öschen $smarty->clear_config(); // eine löschen $smarty->clear_config('foobar'); ?>