summaryrefslogtreecommitdiff
path: root/php.ini-development
diff options
context:
space:
mode:
authorYasuo Ohgaki <yohgaki@php.net>2014-03-18 07:27:45 +0900
committerYasuo Ohgaki <yohgaki@php.net>2014-03-18 07:28:26 +0900
commita28389b2ab890058cab541ec92e2d53f4b5faf3f (patch)
tree650ca26f630b4de0a8040a4d11da51a78d14e972 /php.ini-development
parent42562ee913e039ccb24ff11bc5352f0b0e02ee28 (diff)
downloadphp-git-a28389b2ab890058cab541ec92e2d53f4b5faf3f.tar.gz
Fixed typo in UPGRADING and modified php.ini-* description for encoding related changes
Diffstat (limited to 'php.ini-development')
-rw-r--r--php.ini-development23
1 files changed, 16 insertions, 7 deletions
diff --git a/php.ini-development b/php.ini-development
index c5196b4c87..ac60db901f 100644
--- a/php.ini-development
+++ b/php.ini-development
@@ -950,15 +950,20 @@ cli_server.color = On
[iconv]
; Use of this INI entry is deprecated, use global input_encoding instead.
-; If empty, input_encoding is used.
+; If empty, default_charset or input_encoding or iconv.input_encoding is used.
+; The precedence is: default_charset < intput_encoding < iconv.input_encoding
;iconv.input_encoding =
; Use of this INI entry is deprecated, use global internal_encoding instead.
-; If empty, internal_encoding is used.
+; If empty, default_charset or internal_encoding or iconv.internal_encoding is used.
+; The precedence is: default_charset < internal_encoding < iconv.internal_encoding
;iconv.internal_encoding =
; Use of this INI entry is deprecated, use global output_encoding instead.
-; If empty, output_encoding is used.
+; If empty, default_charset or output_encoding or iconv.output_encoding is used.
+; The precedence is: default_charset < output_encoding < iconv.output_encoding
+; To use an output encoding conversion, iconv's output handler must be set
+; otherwise output encoding conversion cannot be performed.
;iconv.output_encoding =
[intl]
@@ -1729,21 +1734,25 @@ mssql.secure_connection = Off
; Use of this INI entry is deprecated, use global internal_encoding instead.
; internal/script encoding.
; Some encoding cannot work as internal encoding. (e.g. SJIS, BIG5, ISO-2022-*)
-; If empty, default_charset or internal_encoding is used in order.
-; http://php.net/mbstring.internal-encoding
+; If empty, default_charset or internal_encoding or iconv.internal_encoding is used.
+; The precedence is: default_charset < internal_encoding < iconv.internal_encoding
;mbstring.internal_encoding =
; Use of this INI entry is deprecated, use global input_encoding instead.
; http input encoding.
-; If empty, input_encoding is used.
; mbstring.encoding_traslation = On is needed to use this setting.
+; If empty, default_charset or input_encoding or mbstring.input is used.
+; The precedence is: default_charset < intput_encoding < mbsting.http_input
; http://php.net/mbstring.http-input
;mbstring.http_input =
; Use of this INI entry is deprecated, use global output_encoding instead.
; http output encoding.
; mb_output_handler must be registered as output buffer to function.
-; If empty, output_encoding is used.
+; If empty, default_charset or output_encoding or mbstring.http_output is used.
+; The precedence is: default_charset < output_encoding < mbstring.http_output
+; To use an output encoding conversion, mbstring's output handler must be set
+; otherwise output encoding conversion cannot be performed.
; http://php.net/mbstring.http-output
;mbstring.http_output =