最新回答 / sadream
date_timezone_get('PRC'); curl_setopt($ch,CURLOPT_COOKIESESSION,true); curl_setopt($ch, CURLOPT_COOKIEFILE, 'cookiefile'); curl_setopt($ch, CURLOPT_COOKIEJAR, 'cookiefile'); curl_setopt($ch, CURLOPT_COOKIE, session_name().'='.session_id());
2016-05-18
最新回答 / 奔跑的碼農(nóng)
curl_close()這個(gè)方法需要你傳一個(gè)資源類型的參數(shù),就是你上面curl_init()的返回值,你忘記寫這個(gè)參數(shù)了。
2016-03-25
最贊回答 / hello_cffex
你先打印 echo $_SERVER['HTTP_USER_AGENT'];這個(gè)看看,可能不是Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.152 Safari/537.36解決方法:curl_setopt ($ch, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']);
2016-01-24