PHP의 간단한 안티 핫링크 구현 방법을 분석해 보겠습니다. 참고할 수 있도록 모든 사람과 공유하세요. 자세한 내용은 다음과 같습니다.
index.php 페이지는 다음과 같습니다.
<html> <head> <meta http-equiv="Content-Language" c /> <meta name="GENERATOR" c /> <meta http-equiv="Content-Type" c /> <title>防盗链</title> </head> <body> <form action="check.php" method="post"> 提交信息:<input type="text" name="name" value=""/> <input type="submit" name="submit" value="提交"/> </form> </body> </html>
check.php 페이지는 다음과 같습니다.
$urlar=parse_url($_SERVER['HTTP_REFERER']); print("<pre class="brush:php;toolbar:false">"); print_r($urlar); print_r($_SERVER['HTTP_REFERER']); if($urlar['host']!="localhost"){//此处可替换成当前使用的域名 echo "验证错误!"; echo "<script>alert('连接失败');location.href='index.php';</script>"; exit; } print("");
이 글이 PHP 프로그래밍에 종사하는 모든 분들께 도움이 되기를 바랍니다.
위 내용은 PHP 사용자 확인 및 PHP 단순 안티 핫링크 확인 구현 방법을 소개한 내용이며, PHP 사용자 확인 내용도 포함되어 있어 PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되기를 바랍니다.