首页 > 开发 > PHP > 正文

图片防盗链功能

2024-05-04 22:59:45
字体:
来源:转载
供稿:网友

<?php
 
$admin[defaulturl] = "img/no.gif";//盗链返回的地址
$okaysites = array("http://www.5v6.com/","http://t.5v6.com/");  //白名单  
$admin[url_1] = "http://t.5v6.com/";//下载地点1
$admin[url_2] = "";//下载地点2,以此类推
 
$reffer = $http_referer;
if($reffer) {
$yes = 0;
while(list($domain, $subarray) = each($okaysites)) {
if (ereg($subarray,"$reffer")) {
$yes = 1;
}
}
$theu = "url"."_"."$site";
if ($admin[$theu] and $yes == 1) {
header("location: $admin[$theu]/$file");
} else {
header("location: $admin[defaulturl]");
}
} else {
header("location: $admin[defaulturl]");
}
 
?>



上一篇:PHP写的ftp类

下一篇:域名查询代码公布

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表