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
<?php
echo 'User IP Address : '. $_SERVER['REMOTE_ADDR'];
?>
/*
I Hope it will help you.
Namaste
Stay Home Stay Safe
*/
Ejemplo 2: php obtiene la dirección IP
$clientIPAddress=$_SERVER['REMOTE_ADDR'];
Ejemplo 3: obtener el servidor ip php
$exec = 'ipconfig | findstr /R /C:"IPv4.*"';
exec($exec, $output);
preg_match('/d+.d+.d+.d+/', $output[0], $matches);
print_r($matches[0]);
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)