最新回答 / 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
最赞回答 / hello_cffex
你先打印 echo $_SERVER['HTTP_USER_AGENT'];这个看看,可能不是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