Answers for "php get country by ip"

PHP
1

php get location from ip address

$ip = $_SERVER['REMOTE_ADDR'];
$details = json_decode(file_get_contents("http://ipinfo.io/{$ip}/json"));
echo $details->city; // -> "Mountain View"
Posted by: Guest on May-11-2020

Browse Popular Code Answers by Language