mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
mention 5.4.0 in continue-missing-semicolon example (doc bug #68430)
git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@335197 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
81c04e0612
commit
eb25180567
1 changed files with 7 additions and 1 deletions
|
@ -82,7 +82,7 @@ for ($i = 0; $i < 5; ++$i) {
|
|||
]]>
|
||||
</screen>
|
||||
<para>
|
||||
but this script will output:
|
||||
but, in PHP versions below 5.4.0, this script will output:
|
||||
</para>
|
||||
<screen>
|
||||
<![CDATA[
|
||||
|
@ -96,6 +96,12 @@ for ($i = 0; $i < 5; ++$i) {
|
|||
<literal>print</literal> is passed to <literal>continue</literal> as the
|
||||
numeric argument.)
|
||||
</para>
|
||||
<note>
|
||||
<para>
|
||||
As of PHP 5.4.0, the above example will raise an
|
||||
<constant>E_COMPILE_ERROR</constant> error.
|
||||
</para>
|
||||
</note>
|
||||
</informalexample>
|
||||
</para>
|
||||
<para>
|
||||
|
|
Loading…
Reference in a new issue