International PHP Conference Munich 2025

Voting

: max(nine, six)?
(Example: nine)

The Note You're Voting On

info at agentur-obermaier dot de
17 years ago
This is a nice quick full dir read - sorry for my bad english ;)

<?php
function ReadDirs($dir,$em){
if (
$handle = opendir($dir)) {
while (
false !== ($file = readdir($handle))) {
if (
$file != "." && $file != ".." && $file != "Thumb.db") {
if(
is_dir($dir.$file)){
echo
$em."&raquo; ".$file.'<br>';
ReadDirs($dir.$file."/",$em."&nbsp;&nbsp;");
}
}
}
closedir($handle);
}
}
?>

<< Back to user notes page

To Top