数字货币查询汇率

<?php
/**
 * 数字货币类接口
 * 2019.7.28
 * QQ:748507607 
 */
namespace app\common\model;

use Config;
class DigitalCurrency
{
	private $url = 'https://otc-api.huobi.co/';
	private $api_method = "v1/data/market/detail"; 
	//查询usdt购买汇率
	public function getUsdtExchange()
	{
        $this->req_method = 'GET';
        $res = $this->curl($this->url . $this->api_method);
        $res = json_decode($res, true);
        $data = $res['data']['detail']; 
        if($data)
        {
            foreach($data as $v)
            {
                if($v['coinName'] == 'USDT')
                {
                    $data_exchange =  [
                        'buy'=>$v['buy'],
                        'USDTCNY'=>$v['buy'],
                        'CNYUSDT'=>1/$v['buy']
                    ];
                    return ['code'=>200,'msg'=>'success','data'=>$data_exchange];
                }

            }
        }else{
        	return ['code'=>-1003,'msg'=>'汇率查询失败','data'=>null];            
        }

	}



	private function curl($url,$postdata=[]) {
		$ch = curl_init();
		curl_setopt($ch,CURLOPT_URL, $url);
		if ($this->req_method == 'POST') {
			curl_setopt($ch, CURLOPT_POST, 1);
			curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($postdata));
		}
		curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
		curl_setopt($ch,CURLOPT_HEADER,0);
		curl_setopt($ch, CURLOPT_TIMEOUT,60);
		curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
		curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, FALSE);  
		curl_setopt ($ch, CURLOPT_HTTPHEADER, [
			"Content-Type: application/json",
			]);
		$output = curl_exec($ch);
		$info = curl_getinfo($ch);
		curl_close($ch);
		return $output;
	}



}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值