目录

PHP unset() 函数

❮ PHP 变量处理参考

示例

取消设置变量:

<?php
$a = "Hello world!";
echo "The value of variable 'a' before unset: " . $a . "<br>";
unset($a);
echo "The value of variable 'a' after unset: " . $a;
?>
亲自试一试 »

定义和用法

unset() 函数取消设置变量。


语法

unset( variable, ....);

参数值

Parameter Description
variable Required. Specifies the variable to unset
... Optional. Another variable to unset

技术细节

返回值: 没有任何
返回类型: 没有任何
PHP 版本: 4.0+

❮ PHP 变量处理参考