php-src/ext/spl/tests/bug36258.phpt
2008-05-24 14:10:44 +00:00

20 lines
347 B
PHP

--TEST--
Bug #36258 (SplFileObject::getPath() may lead to segfault)
--FILE--
<?php
$diriter = new RecursiveIteratorIterator( new RecursiveDirectoryIterator('.') );
foreach ($diriter as $key => $file) {
var_dump($file->getFilename());
var_dump($file->getPath());
break;
}
?>
===DONE===
--EXPECTF--
string(%d) "%s"
string(%d) "%s"
===DONE===