From: Egon Schmid Date: Tue, 4 Jul 2000 20:31:54 +0000 (+0000) Subject: Not every argument type is mixed. X-Git-Tag: PRE_METHOD_CALL_SEPERATE_FIX_PATCH~28 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cd3973612b0b2b75a2dc4436e103c0157ac3b93a;p=php Not every argument type is mixed. --- diff --git a/ext/standard/array.c b/ext/standard/array.c index 1fb5b96c75..b5d5548ede 100644 --- a/ext/standard/array.c +++ b/ext/standard/array.c @@ -1238,7 +1238,7 @@ static void _compact_var(HashTable *eg_active_symbol_table, zval *return_value, /* }}} */ -/* {{{ proto array compact(mixed var_names [, mixed ... ]) +/* {{{ proto array compact(mixed var_names [, mixed ...]) Creates a hash containing variables and their values */ PHP_FUNCTION(compact) { @@ -1806,7 +1806,7 @@ static void php_array_merge(INTERNAL_FUNCTION_PARAMETERS, int recursive) } -/* {{{ proto array array_merge(array arr1, array arr2 [, mixed ...]) +/* {{{ proto array array_merge(array arr1, array arr2 [, array ...]) Merges elements from passed arrays into one array */ PHP_FUNCTION(array_merge) { @@ -1815,7 +1815,7 @@ PHP_FUNCTION(array_merge) /* }}} */ -/* {{{ proto array array_merge_recursive(array arr1, array arr2 [, mixed ...]) +/* {{{ proto array array_merge_recursive(array arr1, array arr2 [, array ...]) Recursively merges elements from passed arrays into one array */ PHP_FUNCTION(array_merge_recursive) { @@ -2196,7 +2196,7 @@ PHP_FUNCTION(array_unique) } /* }}} */ -/* {{{ proto array array_intersect(array arr1, array arr2 [, mixed ...]) +/* {{{ proto array array_intersect(array arr1, array arr2 [, array ...]) Returns the entries of arr1 that have values which are present in all the other arguments */ PHP_FUNCTION(array_intersect) { @@ -2293,7 +2293,7 @@ out: } /* }}} */ -/* {{{ proto array array_diff(array arr1, array arr2 [, mixed ...]) +/* {{{ proto array array_diff(array arr1, array arr2 [, array ...]) Returns the entries of arr1 that have values which are not present in any of the others arguments */ PHP_FUNCTION(array_diff) {