PHP使用api的两种方法

原文: PHP使用api的两种方法

1.用file_get_contents()函数

 

 1 $params = array('key' => '8d284859d04cfeeea6b0771f754adb49',
 2     'location' => $_COOKIE["lng"].",".$_COOKIE["lat"]);
 3 
 4 $url3 = "http://restapi.amap.com/v3/geocode/regeo";
 5 
 6 if (strripos('?', $url3)) {
 7   $url4 = $url3 . http_build_query($params);
 8 } else {
 9   $url4 = $url3 . '?' . http_build_query($params);
10 }
11 
12 $ret2 = json_decode(file_get_contents($url4));
13 
14 var_dump($ret);
View Code

 

 

2.用php的curl拓展

 1 $url2 = 'http://www.sojson.com/open/api/weather/json.shtml';
 2 
 3 $params = array('city' => '长沙');
 4 
 5 if (strripos('?', $url2)) {
 6   $url = $url2 . http_build_query($params);
 7 } else {
 8   $url = $url2 . '?' . http_build_query($params);
 9 }
10 
11 $data = 'city=长沙';
12 $curlobj = curl_init();    
13 curl_setopt($curlobj, CURLOPT_URL, $url);  
14 curl_setopt($curlobj, CURLOPT_HEADER, 0); 
15 curl_exec($curlobj);
View Code

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值