Smarty Icon

You may use the Smarty logo according to the trademark notice.

Smarty Template Engine Smarty Template Engine

For sponsorship, advertising, news or other inquiries, contact us at:

Sites Using Smarty

Advertisement

Name

clear_all_assign() — clears the values of all assigned variables

Description

void clear_all_assign();

Example 13.5. 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(), get_template_vars(), assign() and append()