Haz todo lo posible por entender el código bien previamente a usarlo a tu proyecto si ttienes algo que aportar puedes comentarlo.
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: php ip
// Function to get the client IP addressfunctionget_client_ip()$ipaddress='';if(getenv('HTTP_CLIENT_IP'))$ipaddress=getenv('HTTP_CLIENT_IP');elseif(getenv('HTTP_X_FORWARDED_FOR'))$ipaddress=getenv('HTTP_X_FORWARDED_FOR');elseif(getenv('HTTP_X_FORWARDED'))$ipaddress=getenv('HTTP_X_FORWARDED');elseif(getenv('HTTP_FORWARDED_FOR'))$ipaddress=getenv('HTTP_FORWARDED_FOR');elseif(getenv('HTTP_FORWARDED'))$ipaddress=getenv('HTTP_FORWARDED');elseif(getenv('REMOTE_ADDR'))$ipaddress=getenv('REMOTE_ADDR');else$ipaddress='UNKNOWN';return$ipaddress;
Eres capaz de añadir valor a nuestra información colaborando tu experiencia en las ilustraciones.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)