Hello PHP EN Documentation team, There are contributions within the online editor queue for this language. Please review, then commit or delete these patches.
Patches for review : ----------------------- Modified: en/reference/yaf/yaf_controller_abstract/construct.xml By: Niel Archer on 2013-03-07 03:22:32 =================================================================== --- en/reference/yaf/yaf_controller_abstract/construct.xml +++ en/reference/yaf/yaf_controller_abstract/construct.xml @@ -15,8 +15,8 @@ </methodsynopsis> <para> <methodname>Yaf_Controller_Abstract::__construct</methodname> is final, - which means it can not be overrode. - you mean want to see + which means it can not be overridden. + You may want to see <methodname>Yaf_Controller_Abstract::init</methodname> instead. </para> </refsect1> => Put this change into your patches : https://edit.php.net/?project=php&action=putIntoMyPatches&idDB=45735 => Delete this change: https://edit.php.net/?project=php&action=deleteThisChange&idDB=45735 ------------------------------------------------------------------ Modified: en/reference/mongo/mongoint32.xml By: daijie on 2013-03-13 22:54:19 =================================================================== --- en/reference/mongo/mongoint32.xml +++ en/reference/mongo/mongoint32.xml @@ -54,7 +54,7 @@ <term><varname>value</varname></term> <listitem> <simpara> - This is the string value of the 64-bit number. For instance, 123's value + This is the string value of the 32-bit number. For instance, 123's value would be "123". </simpara> </listitem> => Put this change into your patches : https://edit.php.net/?project=php&action=putIntoMyPatches&idDB=45918 => Delete this change: https://edit.php.net/?project=php&action=deleteThisChange&idDB=45918 ------------------------------------------------------------------ Modified: en/reference/var/functions/intval.xml By: anonymous on 2013-03-27 02:18:53 =================================================================== --- en/reference/var/functions/intval.xml +++ en/reference/var/functions/intval.xml @@ -40,6 +40,31 @@ <para> The base for the conversion </para> + <note> + <para> + If <parameter>base</parameter> is 0, the base used is determined + by the format of <parameter>var</parameter>: + <itemizedlist> + <listitem> + <simpara> + if string includes a "0x" (or "0X") prefix, the base is taken + as 16 (hex); otherwise, + </simpara> + </listitem> + <listitem> + <simpara> + if string starts with "0", the base is taken as 8 (octal); + otherwise, + </simpara> + </listitem> + <listitem> + <simpara> + the base is taken as 10 (decimal). + </simpara> + </listitem> + </itemizedlist> + </para> + </note> </listitem> </varlistentry> </variablelist> => Put this change into your patches : https://edit.php.net/?project=php&action=putIntoMyPatches&idDB=46078 => Delete this change: https://edit.php.net/?project=php&action=deleteThisChange&idDB=46078 ------------------------------------------------------------------ Modified: en/reference/pcre/pattern.syntax.xml By: anonymous on 2013-03-29 01:31:14 =================================================================== --- en/reference/pcre/pattern.syntax.xml +++ en/reference/pcre/pattern.syntax.xml @@ -271,7 +271,7 @@ <listitem> <simpara> a character with the xx property, see - <link linkend="regexp.reference.unicode">unicode properties</link> + <link linkend="regexp.reference.unicode">Unicode properties</link> for more info </simpara> </listitem> @@ -281,7 +281,17 @@ <listitem> <simpara> a character without the xx property, see - <link linkend="regexp.reference.unicode">unicode properties</link> + <link linkend="regexp.reference.unicode">Unicode properties</link> + for more info + </simpara> + </listitem> + </varlistentry> + <varlistentry> + <term><emphasis>X</emphasis></term> + <listitem> + <simpara> + an Unicode grapheme, see + <link linkend="regexp.reference.unicode">Unicode properties</link> for more info </simpara> </listitem> @@ -611,7 +621,7 @@ </varlistentry> <varlistentry> <term><emphasis>X</emphasis></term> - <listitem><simpara>an extended Unicode sequence</simpara></listitem> + <listitem><simpara>any Unicode grapheme incl. an extended Unicode sequence</simpara></listitem> </varlistentry> </variablelist> <para> @@ -1020,15 +1030,7 @@ </tgroup> </table> <para> - The <literal>X</literal> escape matches any number of Unicode characters - that form an extended Unicode sequence. <literal>X</literal> is equivalent - to <literal>(?>PMpM*)</literal>. - </para> - <para> - That is, it matches a character without the "mark" property, followed - by zero or more characters with the "mark" property, and treats the - sequence as an atomic group (see below). Characters with the "mark" - property are typically accents that affect the preceding character. + The <literal>X</literal> escape matches any single Unicode grapheme regardless it is a single code-point or in form of an extended Unicode sequence with combining marks. </para> <para> Matching characters by Unicode property is not fast, because PCRE has => Put this change into your patches : https://edit.php.net/?project=php&action=putIntoMyPatches&idDB=46090 => Delete this change: https://edit.php.net/?project=php&action=deleteThisChange&idDB=46090 ------------------------------------------------------------------ Modified: en/reference/ldap/functions/ldap-add.xml By: Madara Uchiha on 2013-03-30 00:59:18 =================================================================== --- en/reference/ldap/functions/ldap-add.xml +++ en/reference/ldap/functions/ldap-add.xml @@ -89,7 +89,6 @@ // prepare data $info["cn"] = "John Jones"; $info["sn"] = "Jones"; - $info["mail"] = "j...@example.com"; $info["objectclass"] = "person"; // add data to directory => Put this change into your patches : https://edit.php.net/?project=php&action=putIntoMyPatches&idDB=46103 => Delete this change: https://edit.php.net/?project=php&action=deleteThisChange&idDB=46103 ------------------------------------------------------------------ Modified: en/reference/classobj/functions/get-object-vars.xml By: anonymous on 2013-03-31 05:40:56 =================================================================== --- en/reference/classobj/functions/get-object-vars.xml +++ en/reference/classobj/functions/get-object-vars.xml @@ -13,7 +13,7 @@ </methodsynopsis> <para> Gets the accessible non-static properties of the given - <parameter>object</parameter> according to scope. + <parameter>object</parameter> according to scope and name of the property. </para> </refsect1> <refsect1 role="parameters"> @@ -35,7 +35,7 @@ &reftitle.returnvalues; <para> Returns an associative array of defined object accessible non-static properties - for the specified <parameter>object</parameter> in scope. If a property has + for the specified <parameter>object</parameter> in scope and per the property-name. If a property has not been assigned a value, it will be returned with a &null; value. </para> </refsect1> @@ -59,6 +59,12 @@ </entry> </row> <row> + <entry>5.0.0</entry> + <entry> + This function now filters <type>integer</type> property-names out. Previously their values were returned. + </entry> + </row> + <row> <entry>4.2.0</entry> <entry> Properties which were declared in the class of the <parameter>object</parameter> => Put this change into your patches : https://edit.php.net/?project=php&action=putIntoMyPatches&idDB=46111 => Delete this change: https://edit.php.net/?project=php&action=deleteThisChange&idDB=46111 ------------------------------------------------------------------ Modified: en/reference/math/constants.xml By: anonymous on 2013-04-06 06:28:27 =================================================================== --- en/reference/math/constants.xml +++ en/reference/math/constants.xml @@ -146,13 +146,13 @@ <entry><constant>NAN</constant></entry> <entry>NAN (as a float)</entry> <entry>Not A Number</entry> - <entry></entry> + <entry>PHP 4.3.6</entry> </row> <row xml:id="constant.inf"> <entry><constant>INF</constant></entry> <entry>INF (as a float)</entry> <entry>The infinite</entry> - <entry></entry> + <entry>PHP 4.3.6</entry> </row> </tbody> </tgroup> => Put this change into your patches : https://edit.php.net/?project=php&action=putIntoMyPatches&idDB=46202 => Delete this change: https://edit.php.net/?project=php&action=deleteThisChange&idDB=46202 ------------------------------------------------------------------ Modified: en/reference/stream/streamwrapper/stream-lock.xml By: Chris Wright on 2013-04-08 06:28:44 =================================================================== --- en/reference/stream/streamwrapper/stream-lock.xml +++ en/reference/stream/streamwrapper/stream-lock.xml @@ -11,7 +11,7 @@ &reftitle.description; <methodsynopsis> <modifier>public</modifier> <type>bool</type><methodname>streamWrapper::stream_lock</methodname> - <methodparam><type>mode</type><parameter>operation</parameter></methodparam> + <methodparam><type>int</type><parameter>operation</parameter></methodparam> </methodsynopsis> <para> This method is called in response to <function>flock</function>, when => Put this change into your patches : https://edit.php.net/?project=php&action=putIntoMyPatches&idDB=46208 => Delete this change: https://edit.php.net/?project=php&action=deleteThisChange&idDB=46208 ------------------------------------------------------------------ -- https://edit.php.net/ This email is send automatically by the Php Docbook Online Editor.