1
0
mirror of https://github.com/php/php-src.git synced 2026-04-18 05:21:02 +02:00
Files
archived-php-src/ext/spl/tests/bug71412.phpt
2017-07-02 10:41:38 -04:00

17 lines
373 B
PHP

--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 ]
}
}