PHP code A piece of anti-theft PHP code

WBOY
Release: 2016-07-29 08:35:29
Original
941 people have browsed it

$ADMIN[defaulturl] = http://www.163.com/404.htm; //The address returned by the hotlink
$okaysites = array("http://www.163.com/","http:/ /163.com"); //Whitelist
$ADMIN[url_1] = http://www.163.com/download/; //Download location 1
$ADMIN[url_2] = "";//Download location 2. And so on
$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]");
}
?> Then use the following code to represent the download link.
File name?site=1&file=file

The above introduces the PHP code. A piece of anti-theft PHP code, including the content of PHP code. I hope it will be helpful to friends who are interested in PHP tutorials.

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!