• Downloading from our site will require you to have a paid membership. Upgrade to a Premium Membership from 10$ a month today!

    Dont forget read our Rules! Also anyone caught Sharing this content will be banned. By using this site you are agreeing to our rules so read them. Saying I did not know is simply not an excuse! You have been warned.

Hướng dẫn lấy địa chỉ IP khách truy cập bằng PHP mới nhất

Admin

Well-Known Member
Staff member
Administrator
Chào bạn, hôm nay mình xin hướng dẫn các bạn lấy địa chỉ IP khách truy cập mới nhất bằng PHP
Bạn dùng code sau
PHP:
<?php
$ip = getenv('HTTP_CLIENT_IP')?:
getenv('HTTP_X_FORWARDED_FOR')?:
getenv('HTTP_X_FORWARDED')?:
getenv('HTTP_FORWARDED_FOR')?:
getenv('HTTP_FORWARDED')?:
getenv('REMOTE_ADDR');
echo $ip;
Nếu bạn muốn ghi IP vào file .txt thì viết lại như sau
PHP:
<?php
$ip = getenv('HTTP_CLIENT_IP')?:
getenv('HTTP_X_FORWARDED_FOR')?:
getenv('HTTP_X_FORWARDED')?:
getenv('HTTP_FORWARDED_FOR')?:
getenv('HTTP_FORWARDED')?:
getenv('REMOTE_ADDR');
$ngaygiotruycap = date("H:i:s Y-m-d");
$f=fopen("tuoitreit.vn.txt","a");
fwrite($f,"Ngay gio truy cap: $ngaygiotruycap\nDia chi IP da truy cap: $ip\n");
fclose($f);
echo $ip;
Chúc bạn thành công
Mọi sao chép vui lòng ghi rõ nguồn tuoitreit.vn
 

Facebook Comments

Similar threads

New posts New threads New resources

Back
Top