From ab9ab888cc2425ef412b29a10abd9c5781d84dee Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Fri, 6 Aug 2004 22:16:44 +0000 Subject: [PATCH] Parameters are not passed by reference (bug #24931) git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@165569 c90b9560-bf6c-de11-be94-00142212c4b1 --- .../funchand/functions/call-user-func.xml | 37 +++++++++++++++---- 1 file changed, 30 insertions(+), 7 deletions(-) diff --git a/reference/funchand/functions/call-user-func.xml b/reference/funchand/functions/call-user-func.xml index 7c093878da..c3fcaaf167 100644 --- a/reference/funchand/functions/call-user-func.xml +++ b/reference/funchand/functions/call-user-func.xml @@ -1,5 +1,5 @@ - + @@ -41,17 +41,15 @@ call_user_func('barber', "shave"); Object methods may also be invoked statically using this function by passing array($objectname, $methodname) to the function parameter. - - + + + Note that the parameters for call_user_func are not + passed by reference. + + + +]]> + + + + See also: is_callable, and