reference/strings/functions/parse-str.xml
e35fbbaa52702ebf45c5e7284351e136ed67f3bb
...
...
@@ -44,6 +44,7 @@
44
44
<para>
45
45
Using this function without the <parameter>result</parameter> parameter is highly
46
46
<emphasis>DISCOURAGED</emphasis> and <emphasis>DEPRECATED</emphasis> as of PHP 7.2.
47
+
As of PHP 8.0.0, the <parameter>result</parameter> parameter is <emphasis>mandatory</emphasis>.
47
48
</para>
48
49
</warning>
49
50
</listitem>
...
...
@@ -156,14 +157,6 @@ echo $output['My_Value']; // Something
156
157
sources</link>.
157
158
</para>
158
159
</note>
159
-
<note>
160
-
<para>
161
-
The <link linkend="ini.magic-quotes-gpc">magic_quotes_gpc</link> setting
162
-
affects the output of this function, as <function>parse_str</function> uses
163
-
the same mechanism that PHP uses to populate the <varname>$_GET</varname>,
164
-
<varname>$_POST</varname>, etc. variables.
165
-
</para>
166
-
</note>
167
160
</refsect1>
168
161

169
162
<refsect1 role="seealso">
170
163