1.php获取微信头像
$target=BASE_UPLOAD_PATH.'/'.ATTACH_AVATAR."/avatar_$result.jpg"; $url=$reheadimgurl; $ch = curl_init(); $httpheader = array( 'Host' => 'wx.qlogo.cn', 'Connection' => 'keep-alive', 'Pragma' => 'no-cache', 'Cache-Control' => 'no-cache', 'Accept' => 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,/;q=0.8', 'User-Agent' => 'Mozilla/5.0 (windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.89 Safari/537.36', 'Accept-Encoding' => 'gzip, deflate, sdch', 'Accept-Language' => 'zh-CN,zh;q=0.8,en;q=0.6,zh-TW;q=0.4' ); $options = array( CURLOPT_HTTPHEADER => $httpheader, CURLOPT_URL => $url, CURLOPT_TIMEOUT => 5, CURLOPT_FOLLOWLOCATION => 1, CURLOPT_RETURNTRANSFER => true ); curl_setopt_array( $ch , $options ); $result1 = curl_exec( $ch ); curl_close($ch); file_put_contents( $target, $result1 );
本文为看恩吧原创文章,转载无需和我联系,但请注明来自knsay.com