From a7d6b39bfb7a0e85270adb5ea863a76cf4350458 Mon Sep 17 00:00:00 2001 From: Nikita Popov Date: Sun, 18 Dec 2011 00:21:09 +0000 Subject: [PATCH] Make clear that in PHP the evaluation order of arguments is not unspecified behavior. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@321092 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/functions.xml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/language/functions.xml b/language/functions.xml index a111885a0c..35bf832405 100644 --- a/language/functions.xml +++ b/language/functions.xml @@ -169,7 +169,8 @@ function recursion($a) Information may be passed to functions via the argument list, - which is a comma-delimited list of expressions. + which is a comma-delimited list of expressions. The arguments are + evaluated from left to right. PHP supports passing arguments by value (the default),