Smarty Manual
This manual is provided as a courtesy. It is not an official source. Please check smarty.php.net for updated information.
Example 13-1. clear_all_assign()
<?php// passing name/value pairs$smarty->assign('Name', 'Fred');$smarty->assign('Address', $address);// will output aboveprint_r( $smarty->get_template_vars() );// clear all assigned variables$smarty->clear_all_assign();// will output nothingprint_r( $smarty->get_template_vars() );?>
See also clear_assign(), clear_config(), assign() and append()