mirror of
https://github.com/php/php-src.git
synced 2024-12-04 23:34:25 +08:00
16 lines
206 B
PHP
16 lines
206 B
PHP
--TEST--
|
|
SPL: FilesystemIterator and foreach
|
|
--FILE--
|
|
<?php
|
|
$count = 0;
|
|
foreach(new FilesystemIterator(__DIR__) as $ent)
|
|
{
|
|
++$count;
|
|
}
|
|
var_dump($count > 0);
|
|
?>
|
|
===DONE===
|
|
--EXPECTF--
|
|
bool(true)
|
|
===DONE===
|