安装/配置
在线手册:中文 英文
PHP手册

安装

To enable exif-support configure PHP with --enable-exif

Windows users must enable both the php_mbstring.dll and php_exif.dll DLL's in php.ini. The php_mbstring.dll DLL must be loaded before the php_exif.dll DLL so adjust your php.ini accordingly.


安装/配置
在线手册:中文 英文
PHP手册
PHP手册 - N: 安装

用户评论:

Barnamah (12-May-2009 03:41)

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>';
?>