MFB: Fixed bug #37563 (array_key_exists performance is poor for &$array).

This commit is contained in:
Ilia Alshanetsky 2006-05-24 23:14:36 +00:00
parent a2f0632198
commit 940ed4a426

View File

@ -816,7 +816,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)