php解決微信文章圖片防盜鏈


解決微信文章圖片防盜鏈

function actionWechatImg()
{
    header('Content-type: image/jpg');
    $url = $_GET['url'];
    $refer = "http://www.qq.com/";
    $opt = [
            'http'=>[
                'header'=>"Referer: " . $refer
            ]
           ];
    $context = stream_context_create($opt); 
    $file_contents = file_get_contents($url,false, $context);
    echo $file_contents;
}

調用示例:

<img src="http://xxx.com.cn/wechat-img?url=http%3A%2F%2Fmmbiz.qpic.cn%2Fmmbiz%2F5ddyukqqNUt7ic07NicfAz9u0KrHEibKKMiab2cXA2sIqoj81hRsMZC65DCiaN67FsH2WaXkNOEE0YFLj5OHwIOegIg%2F0%3Fwx_fmt%3Djpeg">

其實就是模擬來源站點。


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM