From 3e151f42d7ce9f7081e8d598b8a7edcd87d0902b Mon Sep 17 00:00:00 2001 From: Sean Coates Date: Fri, 10 Sep 2004 16:38:02 +0000 Subject: [PATCH] grammar # perhaps this should be an entity? git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@168324 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/funchand/functions/func-get-arg.xml | 7 ++++--- reference/funchand/functions/func-get-args.xml | 7 ++++--- reference/funchand/functions/func-num-args.xml | 7 ++++--- 3 files changed, 12 insertions(+), 9 deletions(-) diff --git a/reference/funchand/functions/func-get-arg.xml b/reference/funchand/functions/func-get-arg.xml index f09f8a6018..31a03a13fc 100644 --- a/reference/funchand/functions/func-get-arg.xml +++ b/reference/funchand/functions/func-get-arg.xml @@ -1,5 +1,5 @@ - + @@ -18,8 +18,9 @@ function's argument list. Function arguments are counted starting from zero. func_get_arg will generate a warning if called from outside of a function definition. - This function can not be used directly as a function parameter. You have - to assign the result to a variable and pass that variable instead. + This function cannot be used directly as a function parameter. Instead, + its result may be assigned to a variable, which can then be passed to + the function. If arg_num is greater than the number of diff --git a/reference/funchand/functions/func-get-args.xml b/reference/funchand/functions/func-get-args.xml index 667f49f31d..6f922db6bb 100644 --- a/reference/funchand/functions/func-get-args.xml +++ b/reference/funchand/functions/func-get-args.xml @@ -1,5 +1,5 @@ - + @@ -19,8 +19,9 @@ 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. - This function can not be used directly as a function parameter. You have - to assign the result to a variable and pass that variable instead. + This function cannot be used directly as a function parameter. Instead, + its result may be assigned to a variable, which can then be passed to + the function. diff --git a/reference/funchand/functions/func-num-args.xml b/reference/funchand/functions/func-num-args.xml index bcd4f5f3e0..6e64e8b6da 100644 --- a/reference/funchand/functions/func-num-args.xml +++ b/reference/funchand/functions/func-num-args.xml @@ -1,5 +1,5 @@ - + @@ -18,8 +18,9 @@ Returns the number of arguments passed into the current user-defined function. func_num_args will generate a warning if called from outside of a user-defined function. - This function can not be used directly as a function parameter. You have - to assign the result to a variable and pass that variable instead. + This function cannot be used directly as a function parameter. Instead, + its result may be assigned to a variable, which can then be passed to + the function.