gpt4 book ai didi

php - 如何有效地使用多个 OR 语句

转载 作者:行者123 更新时间:2023-11-28 23:16:25 25 4
gpt4 key购买 nike

我想忽略多个空的数据库表。是否有更有效的方法来执行此操作,而不是像我的示例中那样使用 OR 语句的分配:

if($row['title'] != '' || $row['title'] != NULL || $row['overview'] != '' || $row['概述'] != NULL)

最佳答案

您可以使用 empty() :

if(!empty($row['title']) and !empty($row['overview']))
{
print "Do something";
}

以下值被认为是:

"" (an empty string)
0 (0 as an integer)
0.0 (0 as a float)
"0" (0 as a string)
NULL
FALSE
array() (an empty array)
$var; (a variable declared, but without a value)

关于php - 如何有效地使用多个 OR 语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43725627/

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