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() — clears the value of an assigned variable
void clear_assign(mixed var);
This can be a single value, or an array of values.
Example 13.7. clear_assign()
<?php // clear a single variable $smarty->clear_assign('Name'); // clears multiple variables $smarty->clear_assign(array('Name', 'Address', 'Zip')); ?>
See also
clear_all_assign()
,
clear_config()
,
get_template_vars()
,
assign()
and append()