现在很多网站和论坛的图片都在使用防盗链技术既然有防盗链那么肯定就有破解防盗链的方法啦下面小编就来为你提供一个破解防盗链图片的php函数不过只支持jpg和gif 哦如果想支持多种图处格式大家可以做下修改
$url=$_GET[url];
$ext=pathinfo($urlPATHINFO_EXTENSION);
if($ext!=jpg && $ext!=gif){ // 只支持jpg和gif
readfile(/upload/gif);
exit;
}
$file=md($url)$ext;
if(file_exists($file)){
readfile($file);
exit;
}else{
$data=file_get_contents($url);
if(!$data){ // 读取失败
readfile(/upload/gif);
exit;
}
$handle=fopen($filewb);
fwrite($handle$data);
fclose($handle);
echo $data;
}
?>