Skip to content

Instantly share code, notes, and snippets.

View jigneshbhavani's full-sized avatar
:bowtie:
ignoring bugs

Jignesh Bhavani jigneshbhavani

:bowtie:
ignoring bugs
View GitHub Profile
@jigneshbhavani
jigneshbhavani / get_geolocation_info.php
Last active March 24, 2021 22:17
Get Geo Location information by IP address.
<?php
/**
* echo ip_info("Visitor", "Country"); // India
* echo ip_info("Visitor", "Country Code"); // IN
* echo ip_info("Visitor", "State"); // Andhra Pradesh
* echo ip_info("Visitor", "City"); // Proddatur
* echo ip_info("Visitor", "Address"); // Proddatur, Andhra Pradesh, India
* print_r(ip_info("Visitor", "Location")); // Array ( [city] => Proddatur [state] => Andhra Pradesh [country] => India [country_code] => IN [continent] => Asia [continent_code] => AS )
*
*/