diff options
| author | Derick Rethans <derick@php.net> | 2001-11-15 07:28:35 +0000 |
|---|---|---|
| committer | Derick Rethans <derick@php.net> | 2001-11-15 07:28:35 +0000 |
| commit | 0aca2443d764f83066a45552f98009ae4234b862 (patch) | |
| tree | 93df3e5c5ef4759a00e14f6a2786bbc0187a2e21 | |
| parent | 032765f4671d082d75efe092b1139729305fb4e0 (diff) | |
| download | php-git-0aca2443d764f83066a45552f98009ae4234b862.tar.gz | |
- MFH name change
#- This is to minimize BBC
| -rw-r--r-- | ext/standard/array.c | 4 | ||||
| -rw-r--r-- | ext/standard/basic_functions.c | 2 | ||||
| -rw-r--r-- | ext/standard/php_array.h | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/ext/standard/array.c b/ext/standard/array.c index 72ccc5eeee..2d34ba82ab 100644 --- a/ext/standard/array.c +++ b/ext/standard/array.c @@ -3133,9 +3133,9 @@ PHP_FUNCTION(array_map) /* }}} */ -/* {{{ proto bool key_exists(mixed key, array search) +/* {{{ proto bool array_key_exists(mixed key, array search) Checks if the given key or index exists in the array */ -PHP_FUNCTION(key_exists) +PHP_FUNCTION(array_key_exists) { zval **key, /* key to check for */ **array; /* array to check in */ diff --git a/ext/standard/basic_functions.c b/ext/standard/basic_functions.c index 102de67efd..0c97b41695 100644 --- a/ext/standard/basic_functions.c +++ b/ext/standard/basic_functions.c @@ -616,7 +616,7 @@ function_entry basic_functions[] = { PHP_FE(array_sum, NULL) PHP_FE(array_filter, NULL) PHP_FE(array_map, NULL) - PHP_FE(key_exists, NULL) + PHP_FE(array_key_exists, NULL) /* aliases from array.c */ PHP_FALIAS(pos, current, first_arg_force_ref) diff --git a/ext/standard/php_array.h b/ext/standard/php_array.h index e96899af50..7131bd436d 100644 --- a/ext/standard/php_array.h +++ b/ext/standard/php_array.h @@ -77,7 +77,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); HashTable* php_splice(HashTable *, int, int, zval ***, int, HashTable **); PHPAPI void php_array_merge(HashTable *dest, HashTable *src, int recursive); |
