WEB 教程
实践 示例
HTML 参考手册
CSS 参考手册
PHP 参考手册

如何在 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 相关问题解答

以下是与此主题相关的更多常见问题解答:

Advertisements