La guía o código que hallarás en este artículo es la resolución más sencilla y válida que hallamos a tus dudas o problema.
Ejemplo 1: cómo obtener la dirección IP del cliente usando php
The simplest way to collect the Client/Visitor IP address using PHP is the REMOTE_ADDR.
Pass the 'REMOTE_ADDR' in PHP $_SERVER variable. It will return the IP address of the visitor who is currently viewing the webpage.
Get the IP address of the website
echo'User IP Address : '.$_SERVER['REMOTE_ADDR'];?>
/*
I Hope it will help you.
Namaste
Stay Home Stay Safe
*/
Ejemplo 2: dirección IP php del visitante
functiongetUserIP()// Get real visitor IP behind CloudFlare networkif(isset($_SERVER["HTTP_CF_CONNECTING_IP"]))$_SERVER['REMOTE_ADDR']=$_SERVER["HTTP_CF_CONNECTING_IP"];$_SERVER['HTTP_CLIENT_IP']=$_SERVER["HTTP_CF_CONNECTING_IP"];$client= @$_SERVER['HTTP_CLIENT_IP'];$forward= @$_SERVER['HTTP_X_FORWARDED_FOR'];$remote=$_SERVER['REMOTE_ADDR'];if(filter_var($client,FILTER_VALIDATE_IP))$ip=$client;elseif(filter_var($forward,FILTER_VALIDATE_IP))$ip=$forward;else$ip=$remote;return$ip;$user_ip=getUserIP();echo$user_ip;// Output IP address [Ex: 177.87.193.134]?>
valoraciones y reseñas
Si te ha sido de ayuda nuestro artículo, nos gustaría que lo compartas con más desarrolladores de esta manera nos ayudas a difundir nuestro contenido.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)