From e64af9a898c7bc15a469c124486b923254ecc51c Mon Sep 17 00:00:00 2001 From: Andrey Hristov Date: Mon, 26 Jul 2004 06:32:54 +0000 Subject: [PATCH] proto fix (thanks to dave%php.net for spotting) --- ext/standard/array.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- 2.50.1