1
0
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:
Xinchen Hui
2015-12-10 08:56:18 +08:00
parent 91adffb4d1
commit 7c1ddcc67f
2 changed files with 9 additions and 3 deletions
+6 -2
View File
@@ -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
View File
@@ -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)