① php里实现汇率转换
简单的一个方法:
在加载网页时预读所有货币的汇率,并存为JS数组
当下拉列表更改选择时,用JS控制显示汇率,并计算货币价格
这个思路,你参考一下,应该是非常简单的
② V 友,还有免费的汇率 api 接口可用么
可以用的
name":"英镑", /*货币名称*/
"fBuyPri":"1001.430", /*现汇买入价*/ "mBuyPri":"970.510", /*现钞买入价*/
③ 怎么做一个实时汇率转换的php程序
代码很简单,通过CURL调用google的API。
当然,得把PHP的CURL模块打开
function Currency($from_Currency,$to_Currency,$amount) {
$amount = urlencode($amount);
$from_Currency = urlencode($from_Currency);
$to_Currency = urlencode($to_Currency);
$url = "http://www.google.com/ig/calculator?hl=en&q=$amount$from_Currency=?$to_Currency";
$ch = curl_init();
$timeout = 0;
curl_setopt ($ch, CURLOPT_URL, $url);
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt($ch, CURLOPT_USERAGENT , "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1)");
curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
$rawdata = curl_exec($ch);
curl_close($ch);
$data = explode('"', $rawdata);
$data = explode(' ', $data['3']);
$var = $data['0'];
return round($var,2);
}
echo Currency("RMB","HKD",100);
④ 新手php中人民币换算成其他货币
汇率在变,建议调用第三方接口,实时转换。并将汇率机制加入缓存,提高效率。
⑤ 有没有比较好用的进行汇率转换的接口,可供开发者使用的
Free, Reliable Currency Converter API(免费账户,一天更新一次,一个月免费1000次,免费账户不支持https)
Forex API: Realtime Forex Quotes(免费账户,每分钟更新一次,一天免费1000次,支持https)
Foreign exchange rates and currency conversion JSON API (需要注册,有免费套餐,支持 https,Pricing Plans - Fixer)
YQL Console(雅虎的汇率接口,最近一年服务不可用的概率挺高的)
Open Exchange Rates(免费账户点击这里注册,每月1000次免费调用;收费用户最高可小时更新)
一般来说,法币汇率比较稳定,可以一天获取一次数据,如果你的应用需要依赖高实时性的,那就花些钱,或者是去外汇交易所拉去实时数据。
⑥ 请问有没有php的汇率接口
<script type="text/javascript">
Composite root = new Composite("root");
root.Add(new Leaf("Leaf A"));
root.Add(new Leaf("Leaf B"));
Composite comp=new Composite("Composite X");
comp.Add(new Leaf("Leaf XA"));
comp.Add(new Leaf("Leaf XB"));
root.Add(comp);
⑦ thinkphp 怎么做 汇率实时转换怎么做
你写错了,要写成$_POST['user_id'],用的是TP,建议使用I函数I('post.user_id'),I对参数做了一定的过滤处理。
⑧ php代码下从谷歌汇率接口获得数据,怎么指定放在html中
通过php中的file_get_contents读取数据,再用file_put_contents写入文件
⑨ 怎么实时更新国外其他币种兑换美金的汇率,有没有什么接口
我觉得通过和讯网就能及时的知道。