Skip to content

Instantly share code, notes, and snippets.

@leonardopinho
Created September 1, 2018 15:13
Show Gist options
  • Save leonardopinho/2a392636954f0a4280b84556d8f7330d to your computer and use it in GitHub Desktop.
Save leonardopinho/2a392636954f0a4280b84556d8f7330d to your computer and use it in GitHub Desktop.
/**
* getIpInfo
* @param null $ip
* @return mixed
*/
public static function getIpInfo($ip = null)
{
if (!empty($ip) && !is_null($ip)) {
$details = json_decode(file_get_contents("http://ipinfo.io/{$ip}/json"));
return $details;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment