可能重复:
如何使用 SimpleXML 获取属性?
如何获取高度、长度、重量和宽度的值?因为它有属性?在其他值中,我在检索它时没有问题,只是这个值具有属性。
注意:高度,长度,重量和宽度部分只是问题
这是我如何检索它:
$from_amazon = array(
'asin' => $item->ASIN,
'product_name'
=> $item->ItemAttributes->Title,
'image' => $item->SmallImage->URL,
'price' => $item->ItemAttributes->ListPrice->FormattedPrice,
'product_description'
=> $item->EditorialReviews->EditorialReview->Content,
'category' => $item->ItemAttributes->ProductGroup,
'weight' => $item->ItemAttributes->PackageDimensions->Weight
);