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
void clear_assign(mixed var);
Annulla il valore di una variabile assegnata in precedenza. Può essere un valore singolo, o un array di valori.
Example 13.7. clear_assign
<?php // annullamento di una singola variabile $smarty->clear_assign("Name"); // annullamento di più variabili $smarty->clear_assign(array("Name", "Address", "Zip")); ?>