如何将woocommerce购物车项目名称作为数组

时间:2016-12-12 14:29:48

标签: php arrays woocommerce

我想知道如何将购物车中的所有商品作为数组。 我需要这个,因为我必须使用array_intersect,这样我就可以比较它们。

我在互联网上找不到任何相关信息。

1 个答案:

答案 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);
}