Added changelog entries for break/continue removal, as of PHP 5.4.0

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@323751 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Philip Olson 2012-03-02 00:18:17 +00:00
parent ffb1d4089c
commit fd40a64466
2 changed files with 44 additions and 0 deletions

View file

@ -48,6 +48,28 @@ while (++$i) {
</programlisting>
</informalexample>
</para>
<para>
<table>
<title>Changelog for <literal>break</literal></title>
<tgroup cols="2">
<thead>
<row>
<entry>&Version;</entry>
<entry>&Description;</entry>
</row>
</thead>
<tbody>
<row>
<entry>5.4.0</entry>
<entry>
Removed the ability to pass in variables (e.g., <literal>$num = 2; break $num;</literal>)
as the numerical argument.
</entry>
</row>
</tbody>
</tgroup>
</table>
</para>
</sect1>
<!-- Keep this comment at the end of the file

View file

@ -103,6 +103,28 @@ for ($i = 0; $i < 5; ++$i) {
</para>
</informalexample>
</para>
<para>
<table>
<title>Changelog for <literal>continue</literal></title>
<tgroup cols="2">
<thead>
<row>
<entry>&Version;</entry>
<entry>&Description;</entry>
</row>
</thead>
<tbody>
<row>
<entry>5.4.0</entry>
<entry>
Removed the ability to pass in variables (e.g., <literal>$num = 2; continue $num;</literal>)
as the numerical argument.
</entry>
</row>
</tbody>
</tgroup>
</table>
</para>
</sect1>
<!-- Keep this comment at the end of the file