summaryrefslogtreecommitdiff
path: root/ext/standard/php_array.h
diff options
context:
space:
mode:
authorAndrey Hristov <andrey@php.net>2002-09-11 18:13:48 +0000
committerAndrey Hristov <andrey@php.net>2002-09-11 18:13:48 +0000
commitafdfe38ef37c1a6d15da63745f0ad35f4e94f087 (patch)
treeacda92f1a26eb09eb08cd49ed1a624a9be1435e2 /ext/standard/php_array.h
parenteb3b486f2161f17c30a73425b80b371b32f0313a (diff)
downloadphp-git-afdfe38ef37c1a6d15da63745f0ad35f4e94f087.tar.gz
New function added : array_diff_assoc() . Like array_diff() but does
additional checks on key values. Test script will be added too. #My first patch . it feels strange :)
Diffstat (limited to 'ext/standard/php_array.h')
-rw-r--r--ext/standard/php_array.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/standard/php_array.h b/ext/standard/php_array.h
index 60daa1fe53..f52c06535f 100644
--- a/ext/standard/php_array.h
+++ b/ext/standard/php_array.h
@@ -76,6 +76,7 @@ PHP_FUNCTION(array_rand);
PHP_FUNCTION(array_unique);
PHP_FUNCTION(array_intersect);
PHP_FUNCTION(array_diff);
+PHP_FUNCTION(array_diff_assoc);
PHP_FUNCTION(array_sum);
PHP_FUNCTION(array_filter);
PHP_FUNCTION(array_map);