Skip to content

Instantly share code, notes, and snippets.

@kevinholler
Created September 13, 2014 18:50
Show Gist options
  • Save kevinholler/f279c7a8a838e5e485df to your computer and use it in GitHub Desktop.
Save kevinholler/f279c7a8a838e5e485df to your computer and use it in GitHub Desktop.
<?php
$exif = exif_read_data('http://kevinholler.com/hack4good/example/IMG_0231.JPG', 'GPS', true);
foreach ($exif as $key => $section) {
foreach ($section as $name => $val) {
echo "$key.$name: $val<br />\n";
echo json_encode($arr);
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment