mirror of
https://github.com/php/php-src.git
synced 2024-11-24 10:24:11 +08:00
Fixed bug #37563 (array_key_exists performance is poor for &$array).
This commit is contained in:
parent
755caecfc9
commit
53988d8cf5
1
NEWS
1
NEWS
@ -46,6 +46,7 @@ PHP NEWS
|
||||
- Added RFC2397 (data: stream) support. (Marcus)
|
||||
- Fixed bug #37565 (Using reflection::export with simplexml causing a crash).
|
||||
(Marcus)
|
||||
- Fixed bug #37563 (array_key_exists performance is poor for &$array). (Ilia)
|
||||
- Fixed bug #37514 (strtotime doesn't assume year correctly). (Derick)
|
||||
- Fixed bug #37510 (session_regenerate_id changes session_id() even on
|
||||
failure). (Hannes)
|
||||
|
@ -815,7 +815,7 @@ zend_function_entry basic_functions[] = {
|
||||
PHP_FE(array_map, NULL)
|
||||
PHP_FE(array_chunk, NULL)
|
||||
PHP_FE(array_combine, NULL)
|
||||
PHP_FE(array_key_exists, NULL)
|
||||
PHP_FE(array_key_exists, all_args_prefer_ref)
|
||||
|
||||
/* aliases from array.c */
|
||||
PHP_FALIAS(pos, current, first_arg_force_ref)
|
||||
|
Loading…
Reference in New Issue
Block a user