php-8.0.30-src/ext/spl/tests/bug36258.phpt

18 lines
333 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;
}
?>
--EXPECTF--
string(%d) "%s"
string(%d) "%s"