Home > Backend Development > PHP Tutorial > PHP method for server-side predefined variable calling and string processing

PHP method for server-side predefined variable calling and string processing

墨辰丷
Release: 2023-03-30 17:06:01
Original
1043 people have browsed it

This article mainly introduces the simple anti-leeching method of PHP, involving PHP's related skills for server-side predefined variable calling and string processing. It has certain reference value. Friends in need can refer to it

The details are as follows:

<?php
$ADMIN = array(
  &#39;defaulturl&#39;=> &#39;http://blog.qita.in/images/banner-header.gif&#39;,
  //盗链返回的地址
  &#39;url_1&#39;   => &#39;http://blog.qita.in/file&#39;,
  &#39;url_2&#39;   => &#39;http://blog.qita.in/file1&#39;,
);
$okaysites = array(
 &#39;http://qita.in&#39;,
  &#39;http://blog.qita.in&#39;, //白名单
  &#39;http://blog.qita.in/1.html&#39;,
);
$reffer = $_SERVER[&#39;HTTP_REFERER&#39;];
if ($reffer) {
  $yes = 0;
  while (list($domain, $subarray) = each($okaysites)) {
    if (ereg($subarray, "$reffer")) {
      $yes = 1;
    }
  }
  $theu = &#39;url_&#39; . $_GET[&#39;site&#39;];
  $file = $_GET[&#39;file&#39;];
  if ($ADMIN[$theu] and $yes == 1) {
  header("Location: $ADMIN[$theu]/$file");
  } else {
    header("Location: $ADMIN[defaulturl]");
  }
} else {
  header("Location: $ADMIN[defaulturl]");
}
print_r($_SERVER[&#39;HTTP_REFERER&#39;]);
?>
Copy after login

Summary: The above is the entire content of this article, I hope it will be helpful to everyone's study.

Related recommendations:

Three recursive function implementation methods in php

Use curl to fake IP in PHP Function

PHP simulates the method of response class in asp

The above is the detailed content of PHP method for server-side predefined variable calling and string processing. For more information, please follow other related articles on the PHP Chinese website!

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
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template