From: Dmitry Stogov Date: Thu, 9 Jul 2020 14:24:06 +0000 (+0300) Subject: Fixed mysqli_fetch_row() function info X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=0d9bebac00e568dacbfe8b35f39743179608968e;p=php Fixed mysqli_fetch_row() function info --- diff --git a/ext/opcache/Optimizer/zend_func_info.c b/ext/opcache/Optimizer/zend_func_info.c index a087cae259..a651752763 100644 --- a/ext/opcache/Optimizer/zend_func_info.c +++ b/ext/opcache/Optimizer/zend_func_info.c @@ -484,7 +484,7 @@ static const func_info_t func_infos[] = { F1("mysqli_fetch_fields", MAY_BE_ARRAY | MAY_BE_ARRAY_KEY_LONG | MAY_BE_ARRAY_OF_OBJECT), F1("mysqli_fetch_field_direct", MAY_BE_FALSE | MAY_BE_OBJECT), F1("mysqli_fetch_lengths", MAY_BE_FALSE | MAY_BE_ARRAY | MAY_BE_ARRAY_KEY_LONG | MAY_BE_ARRAY_OF_LONG), - F1("mysqli_fetch_row", MAY_BE_FALSE | MAY_BE_ARRAY | MAY_BE_ARRAY_KEY_LONG | MAY_BE_ARRAY_OF_ANY), + F1("mysqli_fetch_row", MAY_BE_NULL | MAY_BE_ARRAY | MAY_BE_ARRAY_KEY_LONG | MAY_BE_ARRAY_OF_ANY), F1("mysqli_get_client_info", MAY_BE_NULL | MAY_BE_STRING), F1("mysqli_get_host_info", MAY_BE_STRING), F1("mysqli_get_server_info", MAY_BE_STRING),