diff options
Diffstat (limited to 'ext/standard/php_array.h')
| -rw-r--r-- | ext/standard/php_array.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/standard/php_array.h b/ext/standard/php_array.h index 9dc0601cf8..9a96c34b75 100644 --- a/ext/standard/php_array.h +++ b/ext/standard/php_array.h @@ -12,15 +12,13 @@ | obtain it through the world-wide-web, please send a note to | | license@php.net so we can mail you a copy immediately. | +----------------------------------------------------------------------+ - | Authors: Andi Gutmans <andi@zend.com> | - | Zeev Suraski <zeev@zend.com> | + | Authors: Andi Gutmans <andi@php.net> | + | Zeev Suraski <zeev@php.net> | | Rasmus Lerdorf <rasmus@php.net> | | Andrei Zmievski <andrei@php.net> | +----------------------------------------------------------------------+ */ -/* $Id$ */ - #ifndef PHP_ARRAY_H #define PHP_ARRAY_H @@ -69,6 +67,8 @@ PHP_FUNCTION(array_merge_recursive); PHP_FUNCTION(array_replace); PHP_FUNCTION(array_replace_recursive); PHP_FUNCTION(array_keys); +PHP_FUNCTION(array_key_first); +PHP_FUNCTION(array_key_last); PHP_FUNCTION(array_values); PHP_FUNCTION(array_count_values); PHP_FUNCTION(array_column); @@ -107,7 +107,7 @@ PHPAPI int php_array_merge(HashTable *dest, HashTable *src); PHPAPI int php_array_merge_recursive(HashTable *dest, HashTable *src); PHPAPI int php_array_replace_recursive(HashTable *dest, HashTable *src); PHPAPI int php_multisort_compare(const void *a, const void *b); -PHPAPI zend_long php_count_recursive(zval *array, zend_long mode); +PHPAPI zend_long php_count_recursive(HashTable *ht); #define PHP_SORT_REGULAR 0 #define PHP_SORT_NUMERIC 1 |
