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_config() — clears assigned config variables
void clear_config(string var);
This clears all assigned config variables. If a variable name is supplied, only that variable is cleared.
Example 13.10. clear_config()
<?php // clear all assigned config variables. $smarty->clear_config(); // clear one variable $smarty->clear_config('foobar'); ?>
See also
get_config_vars()
,
config variables
,
config files
,
{config_load}
,
config_load()
and
clear_assign()
.