PHP expert |
|
d.m.v. de scandir() functie van php5 kan je een mooi lijstje van mappen/bestanden ophalen van een bepaalde dir.
http://be2.php.net/manual/nl/function.scandir.php
scandir is wel php5 only. Als je een php versie lager dan 5 gebruikt kan je deze functie gebruiken. Deze doet exact hetzelfde als scandir().
<?php
function scandir($dir = './', $sort = 0) {
$dir_open = @ opendir($dir);
if (! $dir_open)
return false;
while (($dir_content = readdir($dir_open)) !== false)
$files[] = $dir_content;
if ($sort == 1)
rsort($files, SORT_STRING);
else
sort($files, SORT_STRING);
return $files;
}
?>
<?php function scandir($dir = './', $sort = 0) { if (! $dir_open) return false; while (($dir_content = readdir($dir_open)) !== false) $files[] = $dir_content; if ($sort == 1) rsort($files, SORT_STRING ); else sort($files, SORT_STRING ); return $files; } ?>
|