ugrás a tartalomhoz

dir list név szerint...

Anonymous · 2004. Júl. 26. (H), 17.15
Hello
Adott egy könyvtár listázó script, ami dátum szerint listázza ki a fájlokat.. mit kéne átírnom, hogy fájlnév szerint listázzon?
A válaszokat elöre is köszi...
Davee

A kód pedig itt:
  1. <?php  
  2.   
  3. $list = $_GET["list"];  
  4. $menu = $_GET["menu"];  
  5.   
  6. function getParentDir($path)  
  7. {  
  8. for($i = 0; $i <= strlen($path)-1; $i++)  
  9.  {  
  10.  if($path[$i] == '/'$num[] = $i;  
  11.  }  
  12. return substr($path, 0, $num[count($num)-2]);  
  13. }  
  14.   
  15.   
  16. if(!emptyempty($list))  
  17.  {  
  18.  if(substr_count($list"..") > 0 OR !file_exists("smsdata/".$list)) exit;  
  19.  $dir = "smsdata/".$list;  
  20.  }  
  21.  else  
  22.  $dir = "smsdata";  
  23.   
  24. $d = dir($dir);  
  25. while ($obj = $d->read()) {  
  26.  if(is_dir($dir."/".$obj))  
  27.   $dirs[] = $obj;  
  28.  else  
  29.  if($obj[0] != '.')  
  30.   $files[] = $obj;  
  31. }  
  32. $d->close();  
  33.   
  34.   
  35.   
  36. if($dir == "smsdata")  
  37.  unset($dirs[0]);  
  38.   
  39.   
  40. $dirlist = array_merge($dirs$files);  
  41.   
  42.   
  43.   
  44.   
  45. unset($dirlist[0]);  
  46.   
  47. $elem = count($dirlist);  
  48.   
  49. echo '<div align="center">';  
  50.   
  51. echo '<table  border="0" cellspacing="0">';  
  52.   
  53. echo "<tr>";  
  54. echo "<td width=\"16\">&nbsp;</td>";  
  55. echo "<td width=\"200\">Fájlnév</td>";  
  56. echo "<td width=\"60\" align=right>Típus</td>";  
  57. echo "<td width=\"80\" align=right>Méret (byte)</td>";  
  58. echo "<td width=\"120\" align=right>Dátum</td>";  
  59. echo "<td width=\"16\">&nbsp;</td>";  
  60. echo "</tr>";  
  61.   
  62. $id = 1;  
  63.   
  64. for($x = 0; $x <= $elem-1; $x++)  
  65. {  
  66.   
  67.   $cc = $dirlist[$id++];  
  68.   
  69.   $path_parts = pathinfo($dir."/".$cc);  
  70.   switch($cc)  
  71.   {  
  72.    case "..":  
  73.    $col = '<a href="/listview.php?list='.getParentDir($list."/".$cc).'"><img src="/icons/16/parent.gif" width="16" height="16" border="0"></a>';  
  74.    $linktype = "par";  
  75.    break;  
  76.   
  77.    default:  
  78.      
  79.    if(is_dir($dir."/".$ccand !emptyempty($cc))  
  80.    {  
  81.     $col = '<a href="/listview.php?list='.(emptyempty($list)?($cc):($list."/".$cc)).'"><img src="/icons/16/dir';  
  82.     $filedate = date("Y-m-d H:i:s"filemtime($dir."/".$cc));  
  83.   
  84.     if(file_exists($dir."/".$cc."/.new"))  
  85.      $col .= 'new.gif" width="16" height="16" border="0"></a>';  
  86.       elseif(file_exists($dir."/".$cc."/.construct"))  
  87.       $col .= 'construct.gif" width="16" height="16" border="0"></a>';  
  88.        elseif(file_exists($dir."/".$cc."/.del"))  
  89.        $col .= 'del.gif" width="16" height="16" border="0"></a>';  
  90.         else  
  91.         $col .= '.gif" width="16" height="16" border="0"></a>';  
  92.   
  93.   
  94.     $linktype = "dir";  
  95.    }  
  96.    else  
  97.     {  
  98.   
  99.     $ext = strtoupper($path_parts["extension"]);  
  100.   
  101.     if(!emptyempty($cc))  
  102.     {  
  103.      $filesize = number_format(ceil(filesize($dir."/".$cc)), 0, ","" ");  
  104.      $filedate = date("Y-m-d H:i:s"filemtime($dir."/".$cc));  
  105.      switch($ext)  
  106.      {  
  107.       case "MP3":  
  108.       $col = '<a href="/'.($dir."/".$cc).'"><img src="/icons/16/mp3.gif" width="16" height="16" border="0" ALT="'.$filesize.' Kbyte"></a>';  
  109.       break;  
  110.   
  111.       case "NFO"case "TXT":  
  112.       $col = '<a href="/'.($dir."/".$cc).'"><img src="/icons/16/info.gif" width="16" height="16" border="0" ALT="'.$filesize.' Kbyte"></a>';  
  113.       break;  
  114.   
  115.       case "AVI"case "MPG"case "MPEG":  
  116.       $col = '<a href="/'.($dir."/".$cc).'"><img src="/icons/16/video.gif" width="16" height="16" border="0" ALT="'.$filesize.' Kbyte"></a>';  
  117.       break;  
  118.   
  119.       case "BIN"case "ISO"case "NRG":  
  120.       $col = '<a href="/'.($dir."/".$cc).'"><img src="/icons/16/cdimage.gif" width="16" height="16" border="0" ALT="'.$filesize.' Kbyte"></a>';  
  121.       break;  
  122.         
  123.       case "CUE":  
  124.       $col = '<a href="/'.($dir."/".$cc).'"><img src="/icons/16/cue.gif" width="16" height="16" border="0" ALT="'.$filesize.' Kbyte"></a>';  
  125.       break;  
  126.   
  127.       case "RAR"case "ZIP"case "ARJ":  
  128.       $col = '<a href="/'.($dir."/".$cc).'"><img src="/icons/16/pack.gif" width="16" height="16" border="0" ALT="'.$filesize.' Kbyte"></a>';  
  129.       break;  
  130.   
  131.       case "JPG"case "JPEG"case "GIF":  
  132.       $col = '<a href="/'.($dir."/".$cc).'"><img src="/icons/16/pic.gif" width="16" height="16" border="0" ALT="'.$filesize.' Kbyte"></a>';  
  133.       break;  
  134.   
  135.       default:  
  136.       if(strlen($ext) == 3 and ($ext[0] == 'R' or $ext[0] == '0') )  
  137.        $col = '<a href="/'.($dir."/".$cc).'"><img src="/icons/16/pack.gif" width="16" height="16" border="0" ALT="'.$filesize.' Kbyte"></a>';  
  138.        else  
  139.        $col = '<a href="/'.($dir."/".$cc).'"><img src="/icons/16/file.gif" width="16" height="16" border="0" ALT="'.$filesize.' Kbyte"></a>';  
  140.       break;  
  141.      }  
  142.   
  143.     }  
  144.     else  
  145.     $col = "&nbsp;";  
  146.     }  
  147.      
  148.   break;  
  149.   }  
  150.   
  151.   
  152.   switch($linktype)  
  153.   {  
  154.   case "par":  
  155.   $link = '<a href="/?list='.getParentDir($list."/".$cc).'">'.$cc.'</a>';  
  156.   $extension = htmlentities("<DIR>");  
  157.   break;  
  158.     
  159.   case "dir":  
  160.   $link = '<a href="/?list='.(emptyempty($list)?($cc):($list."/".$cc)).'">'.$cc.'</a>';  
  161.   $extension = htmlentities("<DIR>");  
  162.   break;  
  163.     
  164.   default:  
  165.   $link = '<a href="/'.($dir."/".$cc).'">'.$cc.'</a>';  
  166.   $extension = $ext;  
  167.   break;  
  168.   }  
  169.   
  170. if($szin == "4B5C8A"$szin = "40517D"else $szin = "4B5C8A";  
  171.   
  172. echo "<tr bgcolor=$szin>";  
  173. echo "<td>$col</td>";  
  174. echo "<td>$link</td>";  
  175. echo "<td align=right>".$extension."</td>";  
  176. echo "<td align=right>$filesize</td>";  
  177. echo "<td align=right>$filedate</td>";  
  178. echo "<td><a href=\"".($dir."/".$cc)."\"><img src=icons/16/down.gif border=0></img></a></td>";  
  179. echo "</tr>";  
  180.   
  181. unset($link$linktype$col$extension$filedate$ext);  
  182.   
  183. }  
  184.   
  185. ?>  
 
1

Re: dir list név szerint...

T.G · 2004. Júl. 26. (H), 18.14
Beolvasod, sorbateszed, kiírod a helyes sorrendben...
http://weblabor.hu/forumok/temak/1941
2

dir objektum

Török Gábor · 2004. Júl. 26. (H), 18.22
helo,

a program a dir objektum read() metodusat hasznalja a konyvtar tartalmanak beolvasasahoz, ami ezt a konyvtarbejegyzesek letrehozasanak datuma alapjan vegzi, ezert ez a mukodes. a problemat legeccerubben ugytudod athidalni, ha a $files tombon lefuttatod pl a natsort() fuggvenyt, amely abc sorrendbe rendezi a fajlneveket. ezt a $dirs-en is megteheted, de ha a kettot egyutt szeretned rendezni, akkor pedig az osszefuzesuk utan, a $dirlist valtozon futtasd le.


--
slink
3

Ohh köszi a gyors választ!!!

Davee · 2004. Júl. 26. (H), 21.32
Csak egy gáz van... rohadtul nem értek a PHP-hez :)
Pont ezért fordultam hozzátok...
Esetleg valahogy konkrétabban nem tudnád/tudnátok leírni hogy mit is kéne átírnom a forrásbol?
Elöre is köcce
Davee