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@282677 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
91c3c84922
commit
a43c1d0214
1 changed files with 52 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="iso-8859-1"?>
|
||||
<!-- $Revision: 1.14 $ -->
|
||||
<!-- $Revision: 1.15 $ -->
|
||||
<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>
|
||||
|
@ -562,6 +562,12 @@
|
|||
<function>strstr</function> and <function>stristr</function>
|
||||
- Added <parameter>before_needle</parameter>.
|
||||
</simpara>
|
||||
<simpara>
|
||||
And <function>fopen</function> got a new mode option
|
||||
(<literal>n</literal>), which passes will pass
|
||||
<constant>O_NONBLOCK</constant> to the underlaying
|
||||
<literal>syscall()</literal> call.
|
||||
</simpara>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
|
||||
|
@ -572,6 +578,10 @@
|
|||
<function>json_encode</function>
|
||||
- Added <parameter>options</parameter>.
|
||||
</simpara>
|
||||
<simpara>
|
||||
<function>json_decode</function>
|
||||
- Added <parameter>depth</parameter>.
|
||||
</simpara>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
|
||||
|
@ -784,6 +794,24 @@
|
|||
</listitem>
|
||||
</itemizedlist>
|
||||
|
||||
<para><link linkend="book.imap">IMAP</link>:</para>
|
||||
<itemizedlist>
|
||||
<listitem>
|
||||
<simpara>
|
||||
<function>imap_gc</function>
|
||||
- Clears IMAP cache.
|
||||
</simpara>
|
||||
<simpara>
|
||||
<function>imap_utf8_to_mutf7</function>
|
||||
-
|
||||
</simpara>
|
||||
<simpara>
|
||||
<function>imap_mutf7_to_utf8()</function>
|
||||
-
|
||||
</simpara>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
|
||||
<para><link linkend="book.json">JSON</link>:</para>
|
||||
<itemizedlist>
|
||||
<listitem>
|
||||
|
@ -912,6 +940,20 @@
|
|||
</itemizedlist>
|
||||
</section>
|
||||
|
||||
<section xml:id="migration53.new-stream-filters">
|
||||
<title>New stream filters</title>
|
||||
<para>
|
||||
The following stream filters were introduced in 5.3.0:
|
||||
</para>
|
||||
<itemizedlist>
|
||||
<listitem>
|
||||
<simpara>
|
||||
dechunk
|
||||
</simpara>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
</section>
|
||||
|
||||
<section xml:id="migration53.class-constants">
|
||||
<title>New Class Constants</title>
|
||||
<para>
|
||||
|
@ -1418,6 +1460,15 @@
|
|||
</listitem>
|
||||
</itemizedlist>
|
||||
|
||||
<para><link linkend="book.curl">cURL</link>:</para>
|
||||
<itemizedlist>
|
||||
<listitem>
|
||||
<simpara>
|
||||
<constant>CURLOPT_PROGRESSFUNCTION</constant>
|
||||
</simpara>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
|
||||
<para><link linkend="book.image">GD</link>:</para>
|
||||
<itemizedlist>
|
||||
<listitem>
|
||||
|
|
Loading…
Reference in a new issue