From fd40a64466902debef595a8875d619dd8b6d105d Mon Sep 17 00:00:00 2001 From: Philip Olson Date: Fri, 2 Mar 2012 00:18:17 +0000 Subject: [PATCH] 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 --- language/control-structures/break.xml | 22 ++++++++++++++++++++++ language/control-structures/continue.xml | 22 ++++++++++++++++++++++ 2 files changed, 44 insertions(+) diff --git a/language/control-structures/break.xml b/language/control-structures/break.xml index e63f45c684..e1eeca087a 100644 --- a/language/control-structures/break.xml +++ b/language/control-structures/break.xml @@ -48,6 +48,28 @@ while (++$i) { + + + Changelog for <literal>break</literal> + + + + &Version; + &Description; + + + + + 5.4.0 + + Removed the ability to pass in variables (e.g., $num = 2; break $num;) + as the numerical argument. + + + + +
+