📅  最后修改于: 2020-10-10 01:04:58             🧑  作者: Mango
通过使用is_null函数,我们可以检查变量是否为NULL。此功能在PHP 4.0.4中引入。
语法:
bool is_null ( mixed $var )
参数:
Parameter | Description | Is compulsory |
---|---|---|
var | The variable being evaluated. | compulsory |
返回类型:
如果var为null,则PHP的is_null()函数返回true,否则返回false。
重要的提示:
我们可以使用unset函数来取消设置变量值。
输出:
Variable is not NULL
输出:
1
";
is_null($y) ? print_r("True\n") : print_r("False\n");
?>
输出:
True
False