我想使用isnull
函数检查其中任何一列是否为空,但它似乎无效...当我将其中一个字段设置为无时,它仍会返回假
$result = mysql_query("select Apps.Email from Apps");
$row = mysql_fetch_array($result);
我的if
声明:
if(is_null($row["Person1"], $row["Person2"])){
// stuff here
}
当我将其更改为:
时,它可以正常工作if (is_null($row["Person1"])
答案 0 :(得分:1)
使用或逻辑。
if(is_null($row["Person1"]) || is_null($row["Person2"])){
// stuff here
}
或者php中的符号是什么。