mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
Sync with php-src
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@282771 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
19785327e6
commit
3063b93c77
1 changed files with 38 additions and 3 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.17 $ -->
|
||||
<!-- $Revision: 1.18 $ -->
|
||||
<appendix xml:id="migration53" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||||
<title>Migrating from PHP 5.2.x to PHP 5.3.x</title>
|
||||
<para>
|
||||
|
@ -223,6 +223,11 @@
|
|||
be successful.
|
||||
</simpara>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<simpara>
|
||||
Dynamic access to static methods is now possible.
|
||||
</simpara>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
</section>
|
||||
|
||||
|
@ -1141,6 +1146,16 @@
|
|||
</listitem>
|
||||
</itemizedlist>
|
||||
|
||||
<para><classname>Exception</classname>:</para>
|
||||
<itemizedlist>
|
||||
<listitem>
|
||||
<simpara>
|
||||
<function>Exception::getPrevious</function>
|
||||
- Retrieves the previous exception.
|
||||
</simpara>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
|
||||
<para><link linkend="book.dom">DOM</link>:</para>
|
||||
<itemizedlist>
|
||||
<listitem>
|
||||
|
@ -1249,8 +1264,9 @@
|
|||
<listitem>
|
||||
<simpara>
|
||||
<link linkend="book.fileinfo">Fileinfo</link>
|
||||
- Improved and more solid replacement for the
|
||||
<link linkend="book.mime-magic">Mimetype</link> extension.
|
||||
- Improved and more solid replacement (full BC) for the
|
||||
<link linkend="book.mime-magic">Mimetype</link> extension, which has been
|
||||
removed.
|
||||
</simpara>
|
||||
</listitem>
|
||||
<listitem>
|
||||
|
@ -1413,6 +1429,12 @@
|
|||
<link linkend="ini.oci8.old-oci-close-semantics">oci8.old_oci_close_semantics=On</link>
|
||||
in &php.ini; gives the old behaviour.
|
||||
</simpara>
|
||||
<simpara>
|
||||
Supports Database Resident Connection Pooling (DRCP), Fast
|
||||
Application Notification (FAN) support, Oracle External
|
||||
Authentication (not supported on Windows).
|
||||
<function>oci_bind_by_name</function> now supports SQLT_AFC (aka CHAR datatype).
|
||||
</simpara>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<simpara>
|
||||
|
@ -2067,6 +2089,13 @@
|
|||
<function>mb_output_handler</function> is activated.
|
||||
</simpara>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<simpara>
|
||||
Added <literal>request_order</literal>.
|
||||
Allows controlling which exactly request options should be available in
|
||||
<varname>$_REQUEST</varname>.
|
||||
</simpara>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
<para>
|
||||
The following ini directives have changed default value:
|
||||
|
@ -2078,6 +2107,12 @@
|
|||
<literal>"1"</literal> (enabled) by default.
|
||||
</simpara>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<simpara>
|
||||
<literal>oci8.default_prefetch</literal> has changed from
|
||||
<literal>"10"</literal> to <literal>"100"</literal>.
|
||||
</simpara>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
</section>
|
||||
|
||||
|
|
Loading…
Reference in a new issue