Answers for "php get my public ip address"

PHP
1

php only my ip

$myIp = '';
if ($_SERVER['REMOTE_ADDR'] == $myIp) {
	//do something
}
Posted by: Guest on October-02-2020
-1

get server ip php

$exec = 'ipconfig | findstr /R /C:"IPv4.*"';
exec($exec, $output);
preg_match('/\d+\.\d+\.\d+\.\d+/', $output[0], $matches);
print_r($matches[0]);
Posted by: Guest on February-16-2021

Browse Popular Code Answers by Language