欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

PHP通过curl获取接口URL的数据方法

程序员文章站 2022-05-14 08:24:08
如下所示:

如下所示:

<?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格式转化为数组格式,方便使用

?>

以上这篇php通过curl获取接口url的数据方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。