From d7fffae095c66f052e0dc813ba89c48a97cbda98 Mon Sep 17 00:00:00 2001 From: jim winstead Date: Thu, 20 Dec 2001 21:59:22 +0000 Subject: [PATCH] func_num_args: minor cleanups git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@65782 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/funchand.xml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/functions/funchand.xml b/functions/funchand.xml index 3864ecdd2d..9f92380670 100755 --- a/functions/funchand.xml +++ b/functions/funchand.xml @@ -1,5 +1,5 @@ - + Function Handling functions Functions @@ -412,8 +412,7 @@ foo (1, 2, 3); 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 function - definition. + generate a warning if called from outside of a user-defind function. @@ -437,11 +436,6 @@ foo (1, 2, 3); // Prints 'Number of arguments: 3' func_get_args to allow user-defined functions to accept variable-length argument lists. - - - This function was added in PHP 4. - -