diff --git a/ext/standard/basic_functions.c b/ext/standard/basic_functions.c index 2ae5cfb2593..60dbf1391ce 100644 --- a/ext/standard/basic_functions.c +++ b/ext/standard/basic_functions.c @@ -4915,7 +4915,7 @@ PHP_FUNCTION(call_user_func_array) ZEND_PARSE_PARAMETERS_START(2, 2) Z_PARAM_FUNC(fci, fci_cache) - Z_PARAM_ARRAY_EX(params, 0, 1) + Z_PARAM_ARRAY(params) ZEND_PARSE_PARAMETERS_END(); zend_fcall_info_args(&fci, params); @@ -4979,7 +4979,7 @@ PHP_FUNCTION(forward_static_call_array) ZEND_PARSE_PARAMETERS_START(2, 2) Z_PARAM_FUNC(fci, fci_cache) - Z_PARAM_ARRAY_EX(params, 0, 1) + Z_PARAM_ARRAY(params) ZEND_PARSE_PARAMETERS_END(); zend_fcall_info_args(&fci, params);