Copy&paste the ini descriptions

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@236225 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Hannes Magnusson 2007-05-24 08:01:35 +00:00
parent 01d58fdb1d
commit 497179e8ef

View file

@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
<!-- $Revision: 1.21 $ -->
<!-- $Revision: 1.22 $ -->
<appendix id="migration52">
<title>Migrating from PHP 5.1.x to PHP 5.2.x</title>
@ -1847,16 +1847,31 @@ $obj->getCommentName('');
<simpara>
<link linkend="ini.pcre.backtrack-limit">pcre.backtrack_limit</link>
</simpara>
<simpara>
PCRE's backtracking limit.
</simpara>
</listitem>
<listitem>
<simpara>
<link linkend="ini.pcre.recursion-limit">pcre.recursion_limit</link>
</simpara>
<simpara>
PCRE's recursion limit. Please note that if you set this value to a high
number you may consume all the available process stack and eventually
crash PHP (due to reaching the stack size limit imposed by the Operating
System).
</simpara>
</listitem>
<listitem>
<simpara>
<link linkend="ini.session.cookie-httponly">session.cookie_httponly</link>
</simpara>
<simpara>
Marks the cookie as accessible only through the HTTP protocol. This means
that the cookie won't be accessible by scripting languages, such as
JavaScript. This setting can effectively help to reduce identity theft
through XSS attacks (although it is not supported by all browsers).
</simpara>
</listitem>
</itemizedlist>
<para>