diff options
Diffstat (limited to 'ext/standard/php_array.h')
-rw-r--r-- | ext/standard/php_array.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/standard/php_array.h b/ext/standard/php_array.h index 519b4b33af..2d9d6607e0 100644 --- a/ext/standard/php_array.h +++ b/ext/standard/php_array.h @@ -69,11 +69,12 @@ PHP_FUNCTION(array_pad); PHP_FUNCTION(array_flip); PHP_FUNCTION(array_rand); -HashTable* _phpi_splice(HashTable *, int, int, zval ***, int, HashTable **); +HashTable* php_splice(HashTable *, int, int, zval ***, int, HashTable **); int multisort_compare(const void *a, const void *b); typedef struct { int *multisort_flags; + int (*compare_func)(zval *result, zval *op1, zval *op2); } php_array_globals; #ifdef ZTS |