PHP破解微信图片盗链

时间:2017-06-27 18:43:50   收藏:0   阅读:322
<?php
/**
 * 获取微信的图片(防盗链)
 */

header(‘Content-type: image/jpeg‘);
if ($_GET["url"]) {
    echo file_get_contents($_GET["url"]);
}

  

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!