mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-15 16:38:54 +00:00
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:
parent
227a33e724
commit
9cdce6429d
1 changed files with 9 additions and 1 deletions
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue