From 4f1e5943d87b790a2fae8ef914198e01fcc4dca9 Mon Sep 17 00:00:00 2001 From: Marcus Boerger Date: Sun, 28 Jul 2002 17:25:55 +0000 Subject: [PATCH] -add & document ini settings for exif --- php.ini-dist | 13 +++++++++++++ php.ini-recommended | 13 +++++++++++++ 2 files changed, 26 insertions(+) diff --git a/php.ini-dist b/php.ini-dist index ec0fb08625..97ec48f59f 100644 --- a/php.ini-dist +++ b/php.ini-dist @@ -951,6 +951,19 @@ sockets.use_system_read = On ; dictionary files. Include the base filename, but not the file extension. ; crack.default_dictionary = "c:\php\lib\cracklib_dict" +[exif] +; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS. +; With mbstring support this will automatically be converted into the encoding +; given by corresponding encode setting. When empty mbstring.internal_encoding +; is used. For the decode settings you can distinguish between motorola and +; intel byte order. A decode setting cannot be empty. +;exif.encode_unicode = ISO-8859-15 +;exif.decode_unicode_motorola = UCS-2BE +;exif.decode_unicode_intel = UCS-2LE +;exif.encode_jis = +;exif.decode_jis_motorola = JIS +;exif.decode_jis_intel = JIS + ; Local Variables: ; tab-width: 4 ; End: diff --git a/php.ini-recommended b/php.ini-recommended index 663b8d9f71..acd5459060 100644 --- a/php.ini-recommended +++ b/php.ini-recommended @@ -958,6 +958,19 @@ sockets.use_system_read = On ; dictionary files. Include the base filename, but not the file extension. ; crack.default_dictionary = "c:\php\lib\cracklib_dict" +[exif] +; Exif UNICODE user comments are handled as UCS-2BE/UCS-2LE and JIS as JIS. +; With mbstring support this will automatically be converted into the encoding +; given by corresponding encode setting. When empty mbstring.internal_encoding +; is used. For the decode settings you can distinguish between motorola and +; intel byte order. A decode setting cannot be empty. +;exif.encode_unicode = ISO-8859-15 +;exif.decode_unicode_motorola = UCS-2BE +;exif.decode_unicode_intel = UCS-2LE +;exif.encode_jis = +;exif.decode_jis_motorola = JIS +;exif.decode_jis_intel = JIS + ; Local Variables: ; tab-width: 4 ; End: -- 2.50.1