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:
Peter Cowburn 2014-11-19 15:24:38 +00:00
parent 81c04e0612
commit eb25180567

View file

@ -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>