mirror of
https://github.com/php/php-src.git
synced 2024-11-25 10:54:15 +08:00
a541bb8078
- Update README.PARAMETER_PARSING_API
35 lines
517 B
PHP
Executable File
35 lines
517 B
PHP
Executable File
--TEST--
|
|
Bug #36287 (Segfault with SplFileInfo conversion)
|
|
--SKIPIF--
|
|
<?php if (!extension_loaded("spl")) print "skip"; ?>
|
|
--FILE--
|
|
<?php
|
|
|
|
$it = new RecursiveIteratorIterator(new RecursiveDirectoryIterator("."), true);
|
|
|
|
$idx = 0;
|
|
foreach($it as $file)
|
|
{
|
|
echo "First\n";
|
|
var_Dump($file->getFilename());
|
|
echo "Second\n";
|
|
var_dump($file->getFilename());
|
|
if (++$idx > 1)
|
|
{
|
|
break;
|
|
}
|
|
}
|
|
|
|
?>
|
|
===DONE===
|
|
--EXPECTF--
|
|
First
|
|
string(%d) "%s"
|
|
Second
|
|
string(%d) "%s"
|
|
First
|
|
string(%d) "%s"
|
|
Second
|
|
string(%d) "%s"
|
|
===DONE===
|