|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
[2016-08-07 03:38 UTC] kalle@php.net
-Status: Open
+Status: Feedback
[2016-08-07 03:38 UTC] kalle@php.net
[2016-08-14 04:22 UTC] php-bugs at lists dot php dot net
[2016-08-23 14:26 UTC] clive at indx dot co dot uk
-Status: No Feedback
+Status: Closed
[2016-08-23 14:26 UTC] clive at indx dot co dot uk
[2016-08-23 14:27 UTC] clive at indx dot co dot uk
-Status: Closed
+Status: Assigned
[2016-08-23 14:27 UTC] clive at indx dot co dot uk
[2016-08-23 14:29 UTC] clive at indx dot co dot uk
-Status: Assigned
+Status: Open
[2016-08-23 14:29 UTC] clive at indx dot co dot uk
[2016-09-08 22:52 UTC] clive at indx dot co dot uk
[2016-09-08 23:31 UTC] clive at indx dot co dot uk
-Status: Open
+Status: Closed
[2016-09-08 23:31 UTC] clive at indx dot co dot uk
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 03 18:00:01 2025 UTC |
Description: ------------ Linux web25 4.4.10-20160518-1030-f317965 #1 SMP Wed May 18 10:33:23 UTC 2016 x86_64 phpinfo() output attached. using "exif_read_data('file')" fails to read data from jpeg files. Code has worked in previous versions. Also checked image online at http://exifdata.com/exif.php, shows EXIF data without issues. Test script: --------------- <?php $exif = exif_read_data( './2014-09-23-5981.jpg' ) ; foreach ($exif as $mykey => $mysection) { foreach ($mysection as $myname => $myval) { echo "$mykey.$myname: $myval<br />\n"; } } ?> archive of example file and .jpeg here: http://www.indx.co.uk/phpexif.zip Expected result: ---------------- Expected entire EXIF data, just got "COMPUTED" outputs.