Thứ Ba, 30 tháng 6, 2020

Xem thông tin từ địa chỉ IP

Link: https://ipinfodb.com/api

function getIPAddress() {
    //whether ip is from the share internet
    if(!empty($_SERVER['HTTP_CLIENT_IP'])) {
        $ip = $_SERVER['HTTP_CLIENT_IP'];
    }
    //whether ip is from the proxy
    elseif (!empty($_SERVER['HTTP_X_FORWARDED_FOR'])) {
        $ip = $_SERVER['HTTP_X_FORWARDED_FOR'];
     }
    //whether ip is from the remote address
    else{
        $ip = $_SERVER['REMOTE_ADDR'];
    }
    return $ip;
}

#### Return
$ip = getIPAddress();
IP-address: ".$ip.";

Download: tại đây

Không có nhận xét nào:

Đăng nhận xét