2012-03-05 41 views
2

如何從osCommerce中的shoppingCart對象提取或獲取價值?我想在首頁上顯示的車的內容,所以我打印的當前會話,以獲得以下:從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

可能重複[獲取從PHP對象特定值(http://stackoverflow.com/questions/3122793/get-specific-value-from -object功能於PHP) – random 2012-03-09 06:00:06

回答

1

對象內部有數組。

所以,你可以這樣做:

$contents = $shoppingCart['contents']; 

得到的itemid和數量。

如果你想總

,這樣做:的

$contents = $shoppingCart['total'];