我想知道如何将购物车中的所有商品作为数组。
我需要这个,因为我必须使用array_intersect
,这样我就可以比较它们。
我在互联网上找不到任何相关信息。
答案 0 :(得分:0)
您可以通过WC()->cart
对象访问购物车内容,如下所示:
<?php
$cart_contents = WC()->cart->cart_contents;
$cart_item_names = array();
foreach($cart_contents as $item) {
array_push($cart_item_names, $item['data']->post->post_title);
}