Skip to content

Instantly share code, notes, and snippets.

@timramseyjr
Created May 27, 2016 21:17
Show Gist options
  • Save timramseyjr/ac8ca4832515b26fd1450c702498e687 to your computer and use it in GitHub Desktop.
Save timramseyjr/ac8ca4832515b26fd1450c702498e687 to your computer and use it in GitHub Desktop.
function getLatLng($zip){
$url = "http://maps.googleapis.com/maps/api/geocode/json?address=".urlencode($zip)."&sensor=false";
$result_string = file_get_contents($url);
$result = json_decode($result_string, true);
$result1[]=$result['results'][0];
$result2[]=$result1[0]['geometry'];
$result3[]=$result2[0]['location'];
return $result3[0];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment