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_all_assign() — >limpia el valor de todas las variables asignadas
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() ); ?>
Ver también clear_assign(), clear_config(), assign() y append()