reference/mbstring/http-inout.xml
95bdd6883b5dde9504701777ba81b3c5f15df52b
...
...
@@ -11,16 +11,7 @@
11
11
</para>
12
12
<note>
13
13
<para>
14
-
In PHP 4.3.2 or earlier versions, there was a limitation in this
15
-
functionality that <literal>mbstring</literal> does not perform
16
-
character encoding conversion in POST data if the
17
-
<literal>enctype</literal> attribute in the <literal>form</literal>
18
-
element is set to <literal>multipart/form-data</literal>.
19
-
So you have to convert the incoming data by yourself in this case
20
-
if necessary.
21
-
</para>
22
-
<para>
23
-
Beginning with PHP 4.3.3, if <literal>enctype</literal> for HTML form is
14
+
If <literal>enctype</literal> for HTML form is
24
15
set to <literal>multipart/form-data</literal> and
25
16
<literal>mbstring.encoding_translation</literal> is set to On
26
17
in &php.ini; the POST'ed variables and the names of uploaded files
...
...
@@ -46,7 +37,7 @@
46
37
<![CDATA[
47
38
;; Disable HTTP Input conversion
48
39
mbstring.http_input = pass
49
-
;; Disable HTTP Input conversion (PHP 4.3.0 or higher)
40
+
;; Disable HTTP Input conversion
50
41
mbstring.encoding_translation = Off
51
42
]]>
52
43
</programlisting>
53
44