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

search for in the

Konfiguracja wykonawcza> <Wymagania
Last updated: Fri, 20 Nov 2009

view this page in

Instalacja

Aby włączyć obsługę Exif, należy skonfigurować PHP z opcją --enable-exif

Użytkownicy Windows muszą włączyć w php.ini biblioteki php_mbstring.dll i php_exif.dll. Biblioteka php_mbstring.dll musi zostać załadowana przed php_exif.dll, a więc powinniśmy odpowiednio dostosować nasz php.ini.



add a note add a note User Contributed Notes
Instalacja
Barnamah
12-May-2009 02: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>';
?>

Konfiguracja wykonawcza> <Wymagania
Last updated: Fri, 20 Nov 2009
 
 
show source | credits | sitemap | contact | advertising | mirror sites