今天小编就为大家分享一篇PHP通过curl获取接口URL的数据方法,具有很好的参考价值,希望对大家有所帮助,一起跟随小编过来看看吧。
 
如下所示:
 
<?php
 
 $weather = curl_init();  
      curl_setopt($weather,CURLOPT_URL,"https://api.pc2801.com/cqssc/".time());  
      curl_setopt($weather, CURLOPT_SSL_VERIFYPEER, false); //如果接口URL是https的,我们将其设为不验证,如果不是https的接口,这句可以不用加
      curl_setopt($weather,CURLOPT_RETURNTRANSFER,true);
      $data = curl_exec($weather);  
      curl_close($weather);      
      $data=json_decode($data,true);//将json格式转化为数组格式,方便使用
 
?>

dawei