From eb251805677e732b5c72dde230c3adfd310a7064 Mon Sep 17 00:00:00 2001 From: Peter Cowburn Date: Wed, 19 Nov 2014 15:24:38 +0000 Subject: [PATCH] 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 --- language/control-structures/continue.xml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/language/control-structures/continue.xml b/language/control-structures/continue.xml index 99b95ecf46..825e3174ee 100644 --- a/language/control-structures/continue.xml +++ b/language/control-structures/continue.xml @@ -82,7 +82,7 @@ for ($i = 0; $i < 5; ++$i) { ]]> - but this script will output: + but, in PHP versions below 5.4.0, this script will output: print is passed to continue as the numeric argument.) + + + As of PHP 5.4.0, the above example will raise an + E_COMPILE_ERROR error. + +