/* }}} */
-/* {{{ 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)
{
}
-/* {{{ 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)
{
/* }}} */
-/* {{{ 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)
{
}
/* }}} */
-/* {{{ 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)
{
}
/* }}} */
-/* {{{ 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)
{