Home > Backend Development > PHP Tutorial > Get the real IP address and IP address verification function in php

Get the real IP address and IP address verification function in php

PHP中文网
Release: 2023-02-28 18:44:01
Original
1472 people have browsed it

This article introduces two functions. One is to verify the IP address, and the other is to obtain the user's real IP address. They are also two commonly used IP operation functions. Students in need can refer to them.

1. Obtain the user’s real IP address

function get_client_ip( ) 
{ 
        if ( getenv( "REMOTE_ADDR" ) && strcasecmp( getenv( "REMOTE_ADDR" ), "unknown" ) ) 
        { 
                $onlineip = getenv( "REMOTE_ADDR" ); 
                return $onlineip; 
        } 
        if ( isset( $_SERVER['REMOTE_ADDR'] ) && $_SERVER['REMOTE_ADDR'] && strcasecmp( $_SERVER['REMOTE_ADDR'], "unknown" ) ) 
        { 
                $onlineip = $_SERVER['REMOTE_ADDR']; 
                return $onlineip; 
        } 
        if ( getenv( "HTTP_CLIENT_IP" ) && strcasecmp( getenv( "HTTP_CLIENT_IP" ), "unknown" ) ) 
        { 
                $onlineip = getenv( "HTTP_CLIENT_IP" ); 
                return $onlineip; 
        } 
        if ( getenv( "HTTP_X_FORWARDED_FOR" ) && strcasecmp( getenv( "HTTP_X_FORWARDED_FOR" ), "unknown" ) ) 
        { 
                $onlineip = getenv( "HTTP_X_FORWARDED_FOR" ); 
        } 
        return $onlineip; 
}
Copy after login

Determine whether it is an IP address

function is_ip( $IP ) 
{ 
        $IP_ARRAY = explode( ".", $IP ); 
        $IP_ARRAY_NUM = sizeof( $IP_ARRAY ); 
        if ( $IP_ARRAY_NUM != 4 ) 
        { 
                return FALSE; 
        } 
        $I = 0; 
        for ( ;    $I < $IP_ARRAY_NUM;    ++$I    ) 
        { 
                if ( !is_numeric( $IP_ARRAY[$I] ) && $IP_ARRAY[$I] < 0 || 255 < $IP_ARRAY[$I] ) 
                { 
                        return FALSE; 
                } 
                if ( !( $I == 3 ) && !( $IP_ARRAY[$I] == 255 ) ) 
                { 
                        continue; 
                } 
                return FALSE; 
        } 
        return TRUE; 
}
Copy after login

Related articles:

PHP function to verify the correctness of ID number

PHP ID number verification function

Three commonly used in project development PHP form validation function

Related labels:
php
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 Articles by Author
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template