如果值等于,则从数组中删除项目

问题描述 投票:2回答:1

在Woocommerce订单页面上,我有订单中的项目,我想通过它循环并按产品ID排除特定项目。

$order->get_order_number();
$items = $order->get_items();

foreach( $items as $key => $value) :
     $exclude = $value->get_product_id();
     if( in_array($exclude, array('3404') ) {  
        unset($items[$key]);
     }
  }
endforeach;

$new_items = array_values($items);

我认为这将循环通过原始数组,删除其$item然后重新索引的$product_id == 3404

我在这里没有运气。有什么想法吗?

解决了 - >

        //Filter out colon cleanse duo
    $items = array_filter($order->get_items(), function($item) {
        return $item->get_product_id() != 3404;
    });

    //Randomize ids and grab one
    shuffle($items);
    foreach( $items as $item) :

        $product_id = $item->get_product_id();
        $product_name = $item->get_name();

        break;
    endforeach;
php arrays woocommerce orders unset
1个回答
3
投票

你应该能够做到这一点:

$items = array_filter($order->get_items(), function($item) {
    return $item->get_product_id() != 3404;
});

这遍历$items并像foreach一样传递给$item。如果array_filter的回调返回true,则该值将保持不变。

您甚至可以直接传递$order->get_items()而无需将项目提取到数组中。

此外,如果您需要排除多个,如评论中所述,您可以这样做:

$items = array_filter($order->get_items(), function($item) {
    return !in_array($item->get_product_id(), [3404, 6890]);
});
© www.soinside.com 2019 - 2024. All rights reserved.