1

嗨,我想从给定的 url 中获取特定的行...例如从这个url,我想获取行“GBP”:0.632956。我想我必须使用 preg 函数,但任何人都可以给我一个例子如何得到它..

谢谢。

4

1 回答 1

2

这是一个 JSON 响应,因此您不需要任何正则表达式:

$response = file_get_contents('http://openexchangerates.org/api/latest.json?app_id=ae2f63619e8d4cc4bd0beaf9fd73839e');
$data = json_decode($response);
echo $data->rates->GBP;

演示

也可以看看:json_decode()

于 2013-02-10T04:59:55.587 回答