<?php
function scandir($scandir, $only=false) {
$opendir=opendir($scandir);
$list=array();
for(; ; ) {
$dir=readdir($opendir);
if ($dir) {
if ($dir=='..' or $dir{0}=='.') {
continue;
}
else{
$list[]=$dir;
}
} else {
closedir($opendir);
break;
}
if ($only="dirs") $list=onlydirs($list);
if ($only="files") $list=onlyfiles($list);
return $list;
}
}
?>