]> granicus.if.org Git - php/commitdiff
Fixed bug #74148 (ReflectionFunction incorrectly reports the number of arguments)
authorXinchen Hui <laruence@gmail.com>
Thu, 23 Feb 2017 03:02:23 +0000 (11:02 +0800)
committerXinchen Hui <laruence@gmail.com>
Thu, 23 Feb 2017 03:02:23 +0000 (11:02 +0800)
NEWS
ext/standard/basic_functions.c

diff --git a/NEWS b/NEWS
index 6f9c15ca134a7dd98669abbfb754897065191f9b..f5ae82bcfbcfbbfd1be2da89652887533961e462 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -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
index eeb3031ccc22a2b0f3058e12983c214e6a320bc8..2f39f51edecea89c425384a74a2c53c720bb2290 100644 (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)