php-src/ext/spl/tests/dit_003.phpt
2008-03-13 19:45:22 +00:00

18 lines
268 B
PHP
Executable File

--TEST--
SPL: FilesystemIterator and foreach
--SKIPIF--
<?php if (!extension_loaded("spl")) print "skip"; ?>
--FILE--
<?php
$count = 0;
foreach(new FilesystemIterator('CVS') as $ent)
{
++$count;
}
var_dump($count > 0);
?>
===DONE===
--EXPECTF--
bool(true)
===DONE===