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_assign (lösche Zuweisung)
void clear_assign(mixed var);
Löscht den Wert einer oder mehrerer (übergabe als Array) zugewiesener Variablen.
Example 13.7. clear_assign (lösche Zuweisung)
<?php // lösche eine einzelne Variable $smarty->clear_assign("Name"); // lösche mehrere Variablen $smarty->clear_assign(array("Name", "Address", "Zip")); ?>