downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

Runtime Configuration> <Requirements
[edit] Last updated: Fri, 24 Jun 2011

view this page in

Installation

برای فعال‌سازی پشتیبانی از exif، PHP را به همراه --enable-exif تنظیم کنید

کاربران ویندوز باید هر دو php_mbstring.dll و php_exif.dll DLL را در php.ini فعال کنند. php_mbstring.dll DLL باید پیش از php_exif.dll DLL بارگذاری شود تا php.ini متناسب با آن تنظیم شود.



add a note add a note User Contributed Notes Installation - [1 notes]
up
-7
Barnamah
4 years ago
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>';
?>

 
show source | credits | stats | sitemap | contact | advertising | mirror sites