summaryrefslogtreecommitdiff
path: root/ext/spl/tests/bug36258.phpt
blob: 60817d06ba4282a8ab61b9c9c8449b26805dc027 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
--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===