mirror of
https://github.com/php/php-src.git
synced 2024-11-26 11:23:47 +08:00
16 lines
204 B
PHP
Executable File
16 lines
204 B
PHP
Executable File
--TEST--
|
|
SPL: FilesystemIterator and foreach
|
|
--FILE--
|
|
<?php
|
|
$count = 0;
|
|
foreach(new FilesystemIterator('CVS') as $ent)
|
|
{
|
|
++$count;
|
|
}
|
|
var_dump($count > 0);
|
|
?>
|
|
===DONE===
|
|
--EXPECTF--
|
|
bool(true)
|
|
===DONE===
|