summaryrefslogtreecommitdiff
path: root/ext/standard/php_array.h
diff options
context:
space:
mode:
authorDerick Rethans <derick@php.net>2001-11-11 18:28:43 +0000
committerDerick Rethans <derick@php.net>2001-11-11 18:28:43 +0000
commit78e4644fa1bdd4214709c3584b776d93a18615fd (patch)
tree1579fd648340db3040840b3eadb39da27d7b3538 /ext/standard/php_array.h
parent88c66d4859ba3ecc0b015259f78e905a5fe4df8c (diff)
downloadphp-git-78e4644fa1bdd4214709c3584b776d93a18615fd.tar.gz
- Renaming key_exists to array_key_exists
@- Renamed key_exists tp array_key_exists. (Derick) #- Not sure if this belongs in NEWS, but it was already in a released # version. And yes, I know I'm breaking BC here, but as it was not documented # yet, that doesn't matter.
Diffstat (limited to 'ext/standard/php_array.h')
-rw-r--r--ext/standard/php_array.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/php_array.h b/ext/standard/php_array.h
index 0292b2416e..73b17bde92 100644
--- a/ext/standard/php_array.h
+++ b/ext/standard/php_array.h
@@ -79,7 +79,7 @@ PHP_FUNCTION(array_diff);
PHP_FUNCTION(array_sum);
PHP_FUNCTION(array_filter);
PHP_FUNCTION(array_map);
-PHP_FUNCTION(key_exists);
+PHP_FUNCTION(array_key_exists);
PHP_FUNCTION(array_chunk);
HashTable* php_splice(HashTable *, int, int, zval ***, int, HashTable **);