通过Yahoo API获取实时货币汇率代码
[php]
header("Content-type: text/html; charset=utf-8");
$file = fopen('http://download.finance.yahoo.com/d/quotes.csv?e=.csv&f=sl1d1t1&s=EURCNY=x','r'); //参数s=EURCNY, 欧元换人民币, 根据需要更换
while ($data = fgetcsv($file)) //读取CSV文件里的每一行内容
{
$goods_list[] = $data;
}
$shijian = $goods_list[0][2] .' '. $goods_list[0][3]; //根据 quotes.csv文件得到的数据, 当前时间 在3,4列位置
$huilv = $goods_list[0][1]; //根据 quotes.csv文件得到的数据, 汇率 在2列位置
echo "当前时间: $shijian, 1欧元可换: $huilv 元人民币<BR>";
fclose($file);
[/php]
阅读剩余
版权声明:
作者:z1988
链接:https://www.z1988.com/1423.html
文章版权归作者所有,未经允许请勿转载。
作者:z1988
链接:https://www.z1988.com/1423.html
文章版权归作者所有,未经允许请勿转载。
THE END