From 9a31e46e8701e28516c10db0c367af6473dc3172 Mon Sep 17 00:00:00 2001 From: Hannes Magnusson Date: Mon, 10 Sep 2007 20:02:10 +0000 Subject: [PATCH] Mention the pseudo param $... git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@242385 c90b9560-bf6c-de11-be94-00142212c4b1 --- language/types.xml | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) diff --git a/language/types.xml b/language/types.xml index 62ca309c17..ed7dadc54d 100644 --- a/language/types.xml +++ b/language/types.xml @@ -1,5 +1,5 @@ - + Types @@ -102,10 +102,13 @@ + And the pseudo-variable $.... + + You may also find some references to the type "double". Consider double the same as float, the two names exist only for historic reasons. - + The type of a variable is usually not set by the programmer; @@ -2332,7 +2335,7 @@ $var = NULL; - Pseudo-types used in this documentation + Pseudo-types and variables used in this documentation mixed @@ -2445,6 +2448,15 @@ call_user_func(array($obj, 'myCallbackMethod')); + + ... + + $... in function prototypes means + and so on. + This variable name is used when a function can take an endless number of + arguments. + +