解决微信文章图片防盗链
function actionWechatImg($url){//扒微信图片
    header('Content-type: image/jpg');
    $refer = "http://www.qq.com/";
    $opt = [
            'http'=>[
                'header'=>"Referer: " . $refer
            ]
           ];
    $context = stream_context_create($opt); 
    $file_contents = file_get_contents($url,false, $context);
    return $file_contents;
}