Answers for "get ip by domain php"

PHP
11

php get ip address

$clientIPAddress=$_SERVER['REMOTE_ADDR'];
Posted by: Guest on August-06-2019
1

php get ip from host

$ip = gethostbyname("google.com");

echo $ip; // 142.251.128.46
Posted by: Guest on February-22-2022
0

php get ip by domain

<?php
$ip = gethostbyname('www.example.com');

echo $ip;
?>
Posted by: Guest on January-28-2022
-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