Voting

: min(five, six)?
(Example: nine)

The Note You're Voting On

krystianmularczyk at gmail dot com
16 years ago
Shows us all files and catalogues in directory except "." and "..".

<?php

foreach (new DirectoryIterator('../moodle') as $fileInfo) {
if(
$fileInfo->isDot()) continue;
echo
$fileInfo->getFilename() . "<br>\n";
}

?>

<< Back to user notes page

To Top