| imho.ws |
![]() |
|
|
|
# 2 |
|
::VIP::
Регистрация: 12.11.2002
Адрес: Nicosia, Cyprus
Сообщения: 1 285
![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() ![]() |
hempsmoke
RTFM PHP код:
__________________
"If people only knew how hard I work to gain my mastery, it wouldn't seem so wonderful at all." Michelangelo Buonarroti |
|
|
|
|
# 5 |
|
Guest
Сообщения: n/a
|
это рекурсивный полный просмотр дерева каталогов
<?php function read_rec($dr) { $dir .= $dr; $indent = sizeof(explode("/", $dir)); $hndl = opendir($dir) or die("Cant open directory"); while(false !== ($str = readdir($hndl))) { if(($str != ".") && ($str != "..")) { $str = $dir."/".$str; if(is_dir($str)) { $i = 0; while($i++ < $indent*5) { print " "; } print "<b><font color=\"red\">".basename($str)."</font></b><br>"; read_rec($str); } else { $x = 0; while($x++ < $indent*5) { print " "; } print "<a href = \"$str\">".basename($str)."</a><br>"; } } } closedir($hndl); } read_rec('.'); ?> |