summaryrefslogtreecommitdiff
path: root/ext/spl/tests/dit_003.phpt
blob: 0d44a3e8b2e7a01897f343c7323113559df57c2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--TEST--
SPL: FilesystemIterator and foreach
--FILE--
<?php
$count = 0;
foreach(new FilesystemIterator(__DIR__) as $ent)
{
	++$count;
}
var_dump($count > 0);
?>
--EXPECT--
bool(true)