gpt4 book ai didi

mysql - 当 if 为 true 时,代码同时执行 if 和 else

转载 作者:行者123 更新时间:2023-11-29 19:37:50 24 4
gpt4 key购买 nike

此代码同时执行 if 和 else,任何帮助将不胜感激,提前谢谢您。

  foreach($each_item as $key => $product)
{
foreach($new_item as $key2 => $newproduct)
{
if (in_array($product['product_id'], $newproduct)) {
$this->update_order_items($order_id, $product['product_id'], array(
"quantity" => $newproduct['quantity'],
"price" => $newproduct['price']
));
}
else
{
$this->delete_order_items($order_id, $product['product_id']);
}
}
}

最佳答案

您能否让我们知道上述代码的结果?

foreach($each_item as $key => $product)
{
foreach($new_item as $key2 => $newproduct)
{
if (in_array($product['product_id'], $newproduct)) {
echo '1';
}
else
{
echo '2';
}
exit;
}
}

关于mysql - 当 if 为 true 时,代码同时执行 if 和 else,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41481453/

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