If you have exif.so or php_exif.dll enabled under php.ini dynamic extensions, but you still have problem running any funtion, it is possible that you may need to change order of extensions in php.ini.
In many PHP installation packages the extensions are listed alphabetically. However, exif is dependent on mbstrings to be loaded first. Yet, with alphabetic ordering the exif is listed before mbstrings and it causes the error. Load mbstrings extensions before exif.
Thus, do put exif as the very last extension to load and you should be fine.
Değiş Tokuş Edilebilir Resim Bilgileri
- Giriş
- Yapılandırma/Kurulum
- Öntanımlı Sabitler
- Exif İşlevleri
- exif_imagetype — Bir resmin türünü saptar
- exif_read_data — Bir JPEG veya TIFF resminden EXIF başlıklarını okur
- exif_tagname — Bir indis için başlık ismini döndürür
- exif_thumbnail — Bir TIFF veya JPEG resminin içinde gömülü küçük örneği döndürür
- read_exif_data — exif_read_data işlevinin takma adıdır
A Austin ¶
1 year ago
