Установка

Чтобы включить поддержку exif, сконфигурируйте PHP с опцией --enable-exif

Пользователи Windows должны включить DLL-файлы php_mbstring.dll и php_exif.dll в php.ini. DLL php_mbstring.dll должна быть загружена до DLL php_exif.dll, так что настройте ваш php.ini соответствующим образом.

Коментарии

Автор:
the order of the .dll file name in php.ini file are very impartan.
like this:
extension=php_mbstring.dll
extension=php_exif.dll

php_mbstring.dll file must be before php_exif.dll in Windows.
I did not work untill I changed the order. 

<?php
// Get the exif data
$exif_data exif_read_data'sample_images/_IGP8499.JPG' );
echo 
'<pre>';
print_r($exif_data);
echo 
'</pre>';
?>
2009-05-12 10:41:47
http://php5.kiev.ua/manual/ru/exif.installation.html

    Поддержать сайт на родительском проекте КГБ