php-src/ext/spl/tests/bug36258.phpt
Jani Taskinen a541bb8078 - Fix tests
- Update README.PARAMETER_PARSING_API
2007-11-02 19:41:12 +00:00

22 lines
411 B
PHP

--TEST--
Bug #36258 (SplFileObject::getPath() may lead to segfault)
--SKIPIF--
<?php if (!extension_loaded("spl")) print "skip"; ?>
--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===