Voting

: five minus two?
(Example: nine)

The Note You're Voting On

springub at northclick dot de
18 years ago
udvig dot ericson at gmail dot com
29-Jul-2006 07:48

In response to the comment below from udvig. The Example ist wrong, here is the right one:

<?php
$dir
= new DirectoryIterator("/tmp");
foreach (
$dir as $file) {
if (
$file->isDot()) {
continue;
}
echo
$file->getFilename() . "\n";
}
?>

<< Back to user notes page

To Top