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

clearConfig() — clears assigned config variables

Description

void clearConfig(string var);

This clears all assigned config variables. If a variable name is supplied, only that variable is cleared.

Example 14.13. clearConfig()


<?php
// clear all assigned config variables.
$smarty->clearConfig();

// clear one variable
$smarty->clearConfig('foobar');
?>

   

See also getConfigVars(), config variables, config files, {config_load}, configLoad() and clearAssign().