mirror of
https://github.com/php/php-src.git
synced 2026-04-29 03:03:26 +02:00
Fixed bug #71077 (ReflectionMethod for ArrayObject constructor returns wrong number of parameters)
This commit is contained in:
@@ -9,12 +9,16 @@ PHP NEWS
|
||||
. Fixed bug #70781 (Extension tests fail on dynamic ext dependency).
|
||||
(Francois Laupretre)
|
||||
|
||||
- Filter:
|
||||
. Fixed bug #71063 (filter_input(INPUT_ENV, ..) does not work). (Reeze Xia)
|
||||
|
||||
- Mbstring:
|
||||
. Fixed bug #71066 (mb_send_mail: Program terminated with signal SIGSEGV,
|
||||
Segmentation fault). (Laruence)
|
||||
|
||||
- Filter:
|
||||
. Fixed bug #71063 (filter_input(INPUT_ENV, ..) does not work). (Reeze Xia)
|
||||
- SPL:
|
||||
. Fixed bug #71077 (ReflectionMethod for ArrayObject constructor returns
|
||||
wrong number of parameters). (Laruence)
|
||||
|
||||
|
||||
?? ??? 2015, PHP 7.0.1
|
||||
|
||||
+3
-1
@@ -1810,8 +1810,10 @@ outexcept:
|
||||
} /* }}} */
|
||||
|
||||
/* {{{ arginfo and function table */
|
||||
ZEND_BEGIN_ARG_INFO_EX(arginfo_array___construct, 0, 0, 0)
|
||||
ZEND_BEGIN_ARG_INFO_EX(arginfo_array___construct, 0, 0, 1)
|
||||
ZEND_ARG_INFO(0, array)
|
||||
ZEND_ARG_INFO(0, ar_flags)
|
||||
ZEND_ARG_INFO(0, iterator_class)
|
||||
ZEND_END_ARG_INFO()
|
||||
|
||||
ZEND_BEGIN_ARG_INFO_EX(arginfo_array_offsetGet, 0, 0, 1)
|
||||
|
||||
Reference in New Issue
Block a user