0

试图从照片 exif 中提取位置数据,但它只显示 GPS 数据的“阵列”。它需要将数据保存到服务器上的日志文件中以进行抓取。难道我做错了什么?这张照片上肯定有地理位置数据。

<?php
    $image = "narnia.jpg";
    $exif = exif_read_data($image, 0, true);
    foreach ($exif as $key => $section) {
    foreach ($section as $name => $val) {
    echo "$key.$name: $val<pre>\n</pre>";
    }
    }
?>

GPS.GPSLatitudeRef: N
GPS.GPSLatitude: Array
GPS.GPSLongitudeRef: W
GPS.GPSLongitude: Array
GPS.GPSTimeStamp: Array
4

1 回答 1

2

是的,因为它是一个数组。

print_r($val);

http://codepad.viper-7.com/PPJtsB

于 2013-01-22T12:28:27.110 回答