gpt4 book ai didi

php - 使用 insole 函数检查任一列是否为空

转载 作者:行者123 更新时间:2023-11-29 00:04:15 26 4
gpt4 key购买 nike

我想使用 isnull 函数检查列中是否有空值,但它似乎不起作用...当我将其中一个字段设置为 none 时,它​​仍然返回错误

$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"])

最佳答案

使用或逻辑。

if(is_null($row["Person1"]) || is_null($row["Person2"])){
// stuff here
}

或者 php 中的 or 符号。

关于php - 使用 insole 函数检查任一列是否为空,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28257413/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com