| 5 bootstrap.inc | variable_del($name) |
| 6 bootstrap.inc | variable_del($name) |
| 7 bootstrap.inc | variable_del($name) |
| 8 bootstrap.inc | variable_del($name) |
Unsets a persistent variable.
Case-sensitivity of the variable_* functions depends on the database collation used. To avoid problems, always use lower case for persistent variable names.
Parameters
$name: The name of the variable to undefine.
See also
75 calls to variable_del()
File
- includes/
bootstrap.inc, line 1019 - Functions that need to be loaded on every Drupal request.
Code
function variable_del($name) {
global $conf;
db_delete('variable')
->condition('name', $name)
->execute();
cache_clear_all('variables', 'cache_bootstrap');
unset($conf[$name]);
}
Login or register to post comments