mirror of
https://github.com/php/php-src.git
synced 2026-03-24 08:12:21 +01:00
14 lines
186 B
PHP
14 lines
186 B
PHP
--TEST--
|
|
SPL: FilesystemIterator and foreach
|
|
--FILE--
|
|
<?php
|
|
$count = 0;
|
|
foreach(new FilesystemIterator(__DIR__) as $ent)
|
|
{
|
|
++$count;
|
|
}
|
|
var_dump($count > 0);
|
|
?>
|
|
--EXPECT--
|
|
bool(true)
|