嗨,我想使用有效的api获取当前的金属价格值,例如黄金。我试过谷歌它永远找不到。我可以在http://goldseek.com/,https://goldprice.org/看到实时黄金价格。但我找不到api。因此,如果有人可以使用php获取当前的黄金或白银价格,将非常有帮助
答案 0 :(得分:0)
从第二个链接https://goldprice.org/,
我明白了
$json = file_get_contents('https://data-asg.goldprice.org/dbXRates/USD');
$decoded = json_decode($json);
$item = $decoded->items;
$date = $decoded->date;
$gold_price = $item[0]->xauPrice;
echo "Gold price on ".$date." is ".$gold_price;