2014-12-29 48 views
0

我第一次使用亞馬遜產品廣告API來獲取生產價格信息,我得到了如下的迴應,如何從亞馬遜製作廣告API獲得價格值在PHP

["Item"]=> 
object(stdClass)#15 (3) { 
    ["ASIN"]=> 
    string(10) "B0017TZY5Y" 
    ["OfferSummary"]=> 
    object(stdClass)#16 (6) { 
    ["LowestUsedPrice"]=> 
    object(stdClass)#17 (3) { 
     ["Amount"]=> 
     int(820) 
     ["CurrencyCode"]=> 
     string(3) "EUR" 
     ["FormattedPrice"]=> 
     string(8) "EUR 8,20" 
    } 
    ["LowestCollectiblePrice"]=> 
    object(stdClass)#18 (3) { 
     ["Amount"]=> 
     int(3490) 
     ["CurrencyCode"]=> 
     string(3) "EUR" 
     ["FormattedPrice"]=> 
     string(9) "EUR 34,90" 
    } 
    ["TotalNew"]=> 
    string(1) "0" 
    ["TotalUsed"]=> 
    string(1) "6" 
    ["TotalCollectible"]=> 
    string(1) "1" 
    ["TotalRefurbished"]=> 
    string(1) "0" 
    } 
    ["Offers"]=> 
    object(stdClass)#19 (3) { 
    ["TotalOffers"]=> 
    int(0) 
    ["TotalOfferPages"]=> 
    int(0) 
    ["MoreOffersUrl"]=> 
    string(1) "0" 
    } 
} 

我想知道,我如何通過使用php檢索響應中的LowestUsedPriceLowestCollectiblePrice值。

回答

2
$YourObject->Item->OfferSummary->LowestCollectiblePrice // for LowestCollectiblePrice value 
$YourObject->Item->OfferSummary->LowestUsedPrice // for LowestUsedPrice value 
+0

謝謝,這工作,但我怎麼可以從字符串值(8) 「EUR 8,20」 –

+0

==> $ YourObject->用品 - > OfferSummary-> LowestCollectiblePrice->金額單獨檢索量 –

相關問題