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