}
/* }}} */
-/* {{{ proto mixed min(mixed arg1 [, mixed arg2 [, ...]])
+/* {{{ proto mixed min(mixed arg1 [, mixed arg2 [, mixed ...]])
Return the lowest value in an array or a series of arguments */
PHP_FUNCTION(min)
{
}
/* }}} */
-/* {{{ proto mixed max(mixed arg1 [, mixed arg2 [, ...]])
+/* {{{ proto mixed max(mixed arg1 [, mixed arg2 [, mixed ...]])
Return the highest value in an array or a series of arguments */
PHP_FUNCTION(max)
{
/* }}} */
-/* {{{ proto array compact(mixed var_names [, ... ])
+/* {{{ proto array compact(mixed var_names [, mixed ... ])
Creates a hash containing variables and their values */
PHP_FUNCTION(compact)
{
/* }}} */
-/* {{{ proto int array_push(array stack, mixed var [, ...])
+/* {{{ proto int array_push(array stack, mixed var [, mixed ...])
Pushes elements onto the end of the array */
PHP_FUNCTION(array_push)
{
/* }}} */
-/* {{{ proto int array_unshift(array stack, mixed var [, ...])
+/* {{{ proto int array_unshift(array stack, mixed var [, mixed ...])
Pushes elements onto the beginning of the array */
PHP_FUNCTION(array_unshift)
{
}
-/* {{{ proto array array_merge(array arr1, array arr2 [, ...])
+/* {{{ proto array array_merge(array arr1, array arr2 [, mixed ...])
Merges elements from passed arrays into one array */
PHP_FUNCTION(array_merge)
{
/* }}} */
-/* {{{ proto array array_merge(array arr1, array arr2 [, ...])
+/* {{{ proto array array_merge_recursive(array arr1, array arr2 [, mixed ...])
Recursively merges elements from passed arrays into one array */
PHP_FUNCTION(array_merge_recursive)
{
}
/* }}} */
-/* {{{ proto array array_intersect(array arr1, array arr2 [, ...])
- Returns the entries of arr1 that have values which are present in
- all the others arguments */
+/* {{{ proto array array_intersect(array arr1, array arr2 [, mixed ...])
+ Returns the entries of arr1 that have values which are present in all the other arguments */
PHP_FUNCTION(array_intersect)
{
zval ***args = NULL;
}
/* }}} */
-/* {{{ proto array array_diff(array arr1, array arr2 [, ...])
+/* {{{ proto array array_diff(array arr1, array arr2 [, mixed ...])
Returns the entries of arr1 that have values which are not present in
any of the others arguments */
PHP_FUNCTION(array_diff)
/* }}} */
-/* {{{ proto mixed array_rand(array input [, int num_req ])
+/* {{{ proto mixed array_rand(array input [, int num_req])
Return key/keys for random entry/entries in the array */
PHP_FUNCTION(array_rand)
{