mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
Fix typo, add tags
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@150176 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
71ff7bc597
commit
61e92271e2
1 changed files with 6 additions and 5 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.13 $ -->
|
||||
<!-- $Revision: 1.14 $ -->
|
||||
<!-- splitted from ./en/functions/array.xml, last change in rev 1.2 -->
|
||||
<refentry id="function.extract">
|
||||
<refnamediv>
|
||||
|
@ -151,11 +151,12 @@
|
|||
<para>
|
||||
Do not use extract on untrusted data, like user-input ($_GET, ...).
|
||||
If you do it, for example if you want to run old code that relies on
|
||||
<link linkend="security.registerglobals">""register_globals</link>
|
||||
<link linkend="security.registerglobals">register_globals</link>
|
||||
temporarily, make sure you use one of the non-overwriting
|
||||
<parameter>extract_type</parameter>s like EXTR_SKIP, and be aware that
|
||||
you should now extract $_SERVER, $_SESSION, $_COOKIE, $_POST and $_GET
|
||||
in that order.
|
||||
<parameter>extract_type</parameter> values like EXTR_SKIP, and be aware
|
||||
that you should now extract <varname>$_SERVER</varname>,
|
||||
<varname>$_SESSION</varname>, <varname>$_COOKIE</varname>,
|
||||
<varname>$_POST</varname> and <varname>$_GET</varname> in that order.
|
||||
</para>
|
||||
</warning>
|
||||
<para>
|
||||
|
|
Loading…
Reference in a new issue