在PHP中,empty() 函数用于判断一个变量是否为空。一个变量被认为是空的,如果它不存在、为 NULL、为 FALSE、为 0、为空字符串(“”)或者一个空数组。
语法:
bool empty(mixed $var)
参数:
- $var:要检查的变量。
返回值:
- 如果变量为空则返回 TRUE,否则返回 FALSE。
示例:
$name = "John"; if (empty($name)) { echo "Name is empty"; } else { echo "Name is not empty"; }
在上面的示例中,如果变量 $name 是空的,那么输出 “Name is empty”;否则输出 “Name is not empty”。