从osCommerce shoppingCart对象中检索购物车内容

时间:2012-03-05 14:57:42

标签: php arrays object oscommerce

如何从osCommerce中的shoppingCart对象中提取或获取值?我想在主页上显示购物车内容,所以我打印了当前会话以获得以下内容:

shoppingCart Object
(
    [contents] => Array
        (
            [32] => Array
                (
                    [qty] => 1
                )

            [26] => Array
                (
                    [qty] => 2
                )

        )

    [total] => 2960
    [weight] => 0
    [cartID] => 29022
    [content_type] => 
)

从此我想从contents数组中检索值。即:32个数量,26个数量和总数,但我不知道如何使用“shoppingCart对象”。

1 个答案:

答案 0 :(得分:1)

在Object内部有数组。

所以你可以这样做:

$contents = $shoppingCart['contents'];

获取itemid和数量。

如果你想要总数,请执行:

$contents = $shoppingCart['total'];