1. 程式人生 > >PHP通過curl獲取介面URL的資料

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格式轉化為陣列格式,方便使用

?>