From f52af952f6a65fc1fe44faa85dc626c33edba0c5 Mon Sep 17 00:00:00 2001 From: Sean Coates Date: Wed, 9 Feb 2005 15:26:06 +0000 Subject: [PATCH] clarify return value (it's a copy) git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@179324 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/funchand/functions/func-get-args.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/reference/funchand/functions/func-get-args.xml b/reference/funchand/functions/func-get-args.xml index 64b3384f9a..9ea49ac5e7 100644 --- a/reference/funchand/functions/func-get-args.xml +++ b/reference/funchand/functions/func-get-args.xml @@ -1,5 +1,5 @@ - + @@ -15,7 +15,7 @@ - Returns an array in which each element is the corresponding + Returns an array in which each element is a copy of the corresponding member of the current user-defined function's argument list. func_get_args will generate a warning if called from outside of a function definition. @@ -25,8 +25,8 @@ - This function returns passed arguments only, and does not account for - default (non-passed) arguments. + This function returns a copy of the passed arguments only, and does not + account for default (non-passed) arguments.