note that magic_quotes_gpc affects this

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@173028 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Sean Coates 2004-11-19 16:21:42 +00:00
parent 227a33e724
commit 9cdce6429d

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.7 $ -->
<!-- $Revision: 1.8 $ -->
<!-- splitted from ./en/functions/strings.xml, last change in rev 1.2 -->
<refentry id="function.parse-str">
<refnamediv>
@ -32,6 +32,14 @@
<link linkend="language.variables.external">variables from outside of PHP</link>.
</para>
</note>
<note>
<para>
The <link linkend="ini.magic-quotes-gpc">magic_quotes_gpc</link> setting
affects the output of this function, as <function>parse_str</function> uses
the same mechanism that PHP uses to populate the <literal>$_GET</literal>,
<literal>$_POST</literal>, etc. variables.
</para>
</note>
<para>
<example>
<title>Using <function>parse_str</function></title>