我目前正在使用以下代码从REST API中检索信息。
$url = "http://api.remix.bestbuy.com/v1/products%28upc=".$upc."%29?apiKey=(API KEY)";
$xmlfiledata = file_get_contents("$url");
$xmldata = new SimpleXMLElement($xmlfiledata);
$saleprice = $xmldata->products->product->salePrice;
echo $saleprice;
但是,PHP正在返回此错误。
Notice: Trying to get property of non-object in FILE LOCATION on line 132
第132行是:
$saleprice = $xmldata->products->product->salePrice;
我已验证正在生成的网址是否正确。有问题的xml文档在这里(为简单起见,我对其进行了简化)。
<products currentPage="1" totalPages="1" from="1" to="1" total="1" queryTime="0.006" totalTime="0.014" canonicalUrl="/v1/products(upc="635753489873")?apiKey=xr2r8us3dcef7qdjnecbvh6g" partial="false">
<product>
<salePrice>529.99</salePrice>
</product>
</products>
如何解决?
答案 0 :(得分:4)
查看PHP.net上的examples,我相信你需要像这样进行访问:
$saleprice = $xmldata->product[0]->salePrice;
$xmldata
实际上是您的“产品”级别,因此我认为您不需要...->products->...