如何在 PHP 中检查变量是否为 NULL
主题:PHP / MySQL
答案:使用 PHP is_null()
函数
您可以使用 PHP is_null()
函数来检查 变量 是否为空。
让我们看一个例子来了解这个函数是如何工作的:
示例
<?php
$var = NULL;
/* 测试变量 */
if(is_null($var)){
echo 'This line is printed, because the $var is null.';
}
?>
is_null()
函数还为未定义的变量返回 true
。 这是一个例子:
<?php
/* 测试未定义的变量 */
if(is_null($inexistent)){
echo 'This line is printed, because the $inexistent is null.';
}
?>
FAQ 相关问题解答
以下是与此主题相关的更多常见问题解答: