mirror of
https://github.com/smarty-php/smarty.git
synced 2025-07-02 02:11:00 +02:00
33 lines
546 B
Markdown
33 lines
546 B
Markdown
![]() |
clearAssign()
|
||
|
|
||
|
clears the value of an assigned variable
|
||
|
|
||
|
Description
|
||
|
===========
|
||
|
|
||
|
void
|
||
|
|
||
|
clearAssign
|
||
|
|
||
|
mixed
|
||
|
|
||
|
var
|
||
|
|
||
|
This can be a single value, or an array of values.
|
||
|
|
||
|
|
||
|
<?php
|
||
|
// clear a single variable
|
||
|
$smarty->clearAssign('Name');
|
||
|
|
||
|
// clears multiple variables
|
||
|
$smarty->clearAssign(array('Name', 'Address', 'Zip'));
|
||
|
?>
|
||
|
|
||
|
|
||
|
|
||
|
See also [`clearAllAssign()`](#api.clear.all.assign),
|
||
|
[`clearConfig()`](#api.clear.config),
|
||
|
[`getTemplateVars()`](#api.get.template.vars), [`assign()`](#api.assign)
|
||
|
and [`append()`](#api.append)
|