andrey Mon Jul 26 02:32:55 2004 EDT
Modified files:
/php-src/ext/standard array.c
Log:
proto fix
(thanks to dave%php.net for spotting)
http://cvs.php.net/diff.php/php-src/ext/standard/array.c?r1=1.268&r2=1.269&ty=u
Index: php-src/ext/standard/array.c
diff -u php-src/ext/standard/array.c:1.268 php-src/ext/standard/array.c:1.269
--- php-src/ext/standard/array.c:1.268 Sat Jul 24 05:25:52 2004
+++ php-src/ext/standard/array.c Mon Jul 26 02:32:54 2004
@@ -21,7 +21,7 @@
+----------------------------------------------------------------------+
*/
-/* $Id: array.c,v 1.268 2004/07/24 09:25:52 andrey Exp $ */
+/* $Id: array.c,v 1.269 2004/07/26 06:32:54 andrey Exp $ */
#include "php.h"
#include "php_ini.h"
@@ -3044,7 +3044,7 @@
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)
{
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php