diff options
author | David Croft <david@php.net> | 2001-04-30 04:06:09 +0000 |
---|---|---|
committer | David Croft <david@php.net> | 2001-04-30 04:06:09 +0000 |
commit | 34f03f2c5cce5b668bfaa1ec04ef8d2f1e9c33a1 (patch) | |
tree | c5f50f148d4c91a74cdc77d070d4e729481a7278 /ext/standard/php_array.h | |
parent | ea7a6b407bcf54604579e3c41482bb90e2897ea9 (diff) | |
download | php-git-34f03f2c5cce5b668bfaa1ec04ef8d2f1e9c33a1.tar.gz |
@ - Added key_exists() to check if a given key or index exists in an
@ array or object (David Croft)
Added key_exists() to check if a given key or index exists in an array or object
Diffstat (limited to 'ext/standard/php_array.h')
-rw-r--r-- | ext/standard/php_array.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ext/standard/php_array.h b/ext/standard/php_array.h index fb00e2d08a..04ebb02167 100644 --- a/ext/standard/php_array.h +++ b/ext/standard/php_array.h @@ -77,6 +77,7 @@ PHP_FUNCTION(array_diff); PHP_FUNCTION(array_sum); PHP_FUNCTION(array_filter); PHP_FUNCTION(array_map); +PHP_FUNCTION(key_exists); HashTable* php_splice(HashTable *, int, int, zval ***, int, HashTable **); PHPAPI void php_array_merge(HashTable *dest, HashTable *src, int recursive); |