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:
void clear_assign( |
var) ; |
string var
;Isso limpa o valor de uma variável fixada. Isso pode ser um valor simples, ou um array de valores.
Example 13.7. clear_assign
// clear a single variable $smarty->clear_assign("Name"); // clear multiple variables $smarty->clear_assign(array("Name","Address","Zip"));