1
0
mirror of https://github.com/php/php-src.git synced 2026-04-08 16:43:44 +02:00

Fixed bug #74148 (ReflectionFunction incorrectly reports the number of arguments)

This commit is contained in:
Xinchen Hui
2017-02-23 11:02:23 +08:00
parent 015a80ef7b
commit 1d4eead995
2 changed files with 3 additions and 0 deletions

2
NEWS
View File

@@ -50,6 +50,8 @@ PHP NEWS
(Anatol)
- Standard:
. Fixed bug #74148 (ReflectionFunction incorrectly reports the number of
arguments). (Laruence)
. Fixed bug #74005 (mail.add_x_header causes RFC-breaking lone line feed).
(Anatol)
. Fixed bug #73118 (is_callable callable name reports misleading value for

View File

@@ -1193,6 +1193,7 @@ ZEND_BEGIN_ARG_INFO_EX(arginfo_fputcsv, 0, 0, 2)
ZEND_ARG_INFO(0, fields) /* ARRAY_INFO(0, fields, 1) */
ZEND_ARG_INFO(0, delimiter)
ZEND_ARG_INFO(0, enclosure)
ZEND_ARG_INFO(0, escape_char)
ZEND_END_ARG_INFO()
ZEND_BEGIN_ARG_INFO_EX(arginfo_fgetcsv, 0, 0, 1)