gpt4 book ai didi

php - php中如何跳行

转载 作者:行者123 更新时间:2023-12-02 19:43:52 26 4
gpt4 key购买 nike

我正在努力寻找一种正确执行此逻辑的方法。

If (this thing is null)
Skip it
Else
Don't skip it

我尝试使用 if/else 和 while 循环,但每个循环都会使程序崩溃。我测试了这样的东西:

(inside a foreach)
if($value->getThing() == NULL) {
//HOW TO SKIP???
//I try to 'set' this thing
$value->setThing(0); //BUT IT Doesn't work because it's an associated object...
} else {
$value->getThing();
}

并尝试了这个:

(inside foreach)
while ($value->getThing() != NULL) {
$value->getThing();
//Do Calculation...
}

当到达空值时,两者都会崩溃。我知道为什么,但我不知道如何跳过 null 的事情。

如果你看不出来,我是个新手。但我在学习。

编辑:数据库中的内容为空。

最佳答案

试试这个代码:

foreach($values as $value){
if(!is_null($value->getThing())){
#do calculation
}
}

关于php - php中如何跳行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36917069/

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