下面的代码在 PHP 中,并从 XML 响应文件返回价格。
$price = $result->Items->Item->OfferSummary->LowestNewPrice->FormattedPrice; //lowest new price
$listPrice = $result->Items->Item->Offers->Offer->OfferListing->Price->FormattedPrice; //list price
如果我回显 $price 或 $listPrice 它可以工作
我希望得到两个价格之间的差异,但如果我这样做了,我会得到 NULL
$savings = $listPrice - $price; or $savings = ($listPrice - $price);
欢迎任何帮助