1 <?php 2 header("content-type:text/html; charset = utf-8"); 3 4 // 5 // 6 7 $url = "http://api.94qing.com/"; 8 $cookie_file = tempnam(' ./temp','cookie'); 9 10 $ch = curl_init($url); 11 curl_setopt($ch, CURLOPT_HEADER,0); 12 curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);//0顯示,1不顯示 13 curl_setopt($ch, CURLOPT_COOKIEJAR,$cookie_file);//保存cookie 14 $data = curl_exec($ch); 15 curl_close($ch); 16 17 $url = "http://api.94qing.com/?type=weather&msg=合肥";//修改合肥爲你本身的城市 18 $headers = array("Referer:http://api.94qing.com/"); 19 20 $ch = curl_init($url); 21 22 curl_setopt($ch, CURLOPT_HEADER,0); 23 curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);//0顯示,1不顯示 24 curl_setopt($ch,CURLOPT_HTTPHEADER, $headers); 25 curl_setopt($ch, CURLOPT_COOKIEFILE,$cookie_file);//保存cookie 26 $data = curl_exec($ch); 27 curl_close($ch); 28 echo $data; 29 ?>