Now I am learning how to extract exif from images.I wrote simple code as follows:
<?php
$exif_data = exif_read_data('sample.jpg');
print_r($exif_data);
?>
But when executing the code, a fatal error occurs regarding undefined exif_read_data (). I am a Windows user and I changed php.ini as follows:
extension=php_mbstring.dll
extension=php_exif.dll
Thank you for your help.
source
share