- SPL:
. Fixed bug #73471 (PHP freezes with AppendIterator). (jhdxr)
+ . Fixed bug #71412 (Incorrect arginfo for ArrayIterator::__construct).
+ (tysonandre775 at hotmail dot com)
- Session:
. Fixed bug #74514 (5 session functions incorrectly warn when calling in
--- /dev/null
+--TEST--
+Bug#71412 ArrayIterator reflection parameter info
+--SKIPIF--
+<?php
+extension_loaded('SPL') || print "skip";
+--FILE--
+<?php
+echo (new ReflectionMethod('ArrayIterator', '__construct'));
+--EXPECT--
+Method [ <internal:SPL, ctor> public method __construct ] {
+
+ - Parameters [2] {
+ Parameter #0 [ <optional> $array ]
+ Parameter #1 [ <optional> $ar_flags ]
+ }
+}