Home > php教程 > PHP源码 > body text

PHP code to determine whether the user is using a proxy

大家讲道理
Release: 2016-11-09 14:54:40
Original
1522 people have browsed it

<?php
/*****************************************************
*
*    isProxy
*    check whether client is under Proxy or not
*    $_SERVER[&#39;HTTP_X_FORWARDED_FOR&#39;] is pivotal here
*    if client is under Proxy, returns true
*    if client is not under Proxy, returns false
*    
*****************************************************/
 
function isProxy(){
    return (!empty($_SERVER[&#39;HTTP_X_FORWARDED_FOR&#39;])) ? true : false;
}
?>
Copy after login


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 Recommendations
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!