summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrey Hristov <andrey@php.net>2004-07-26 06:32:54 +0000
committerAndrey Hristov <andrey@php.net>2004-07-26 06:32:54 +0000
commite64af9a898c7bc15a469c124486b923254ecc51c (patch)
tree1211568d0235c58f9a8a2e5c8cd30e371d361a05
parentdede51adf6efe655f4cfb4ab5d094a6afaaf2c57 (diff)
downloadphp-git-e64af9a898c7bc15a469c124486b923254ecc51c.tar.gz
proto fix
(thanks to dave%php.net for spotting)
-rw-r--r--ext/standard/array.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/array.c b/ext/standard/array.c
index 33e7652703..84625ca71c 100644
--- a/ext/standard/array.c
+++ b/ext/standard/array.c
@@ -3044,7 +3044,7 @@ out:
efree(args);
}
-/* {{{ proto array array_intersect_key(array arr1, array arr2 [, array ...], callback data_compare_func)
+/* {{{ proto array array_intersect_key(array arr1, array arr2 [, array ...])
Returns the entries of arr1 that have keys which are present in all the other arguments. Kind of equivalent to array_diff(array_keys($arr1), array_keys($arr2)[,array_keys(...)]). Equivalent of array_intersect_assoc() but does not do compare of the data. */
PHP_FUNCTION(array_intersect_key)
{