Description
void
clear_all_assign ( void )
Example 13-1. clear_all_assign()
<?php // passing name/value pairs $smarty->assign('Name', 'Fred'); $smarty->assign('Address', $address);
// will output above print_r( $smarty->get_template_vars() );
// clear all assigned variables $smarty->clear_all_assign();
// will output nothing print_r( $smarty->get_template_vars() );
?>
|
|
See also
clear_assign(),
clear_config(),
assign()
and append()