PHP-Code:
<?php
$array = array();
GetDir("buch/");
echo "<br>";
echo implode("<a href=\"http://www.meine-domain.de/",$array,"\">",$array,"<\A><br>"); // Zeile 5
function GetDir($sPath)
{
global $array;
//Load Directory Into Array
$handle=opendir($sPath);
while ($file = readdir($handle))
{
$retVal[count($retVal)] = $file;
}
//Clean up and sort
closedir($handle);
sort($retVal);
//return $retVal;
while (list($key, $val) = each($retVal))
{
if ($val != "." && $val != "..")
{
$tmp = explode(".",$val);
$ext = strtolower($tmp[count($tmp)-1]);
$path = str_replace("//","/",$sPath.$val);
if(is_file($sPath.$val) && ($ext=="zip"))
{
array_push($array,$path);
}
if (is_dir($sPath.$val))
{
GetDir($sPath.$val."/");
}
}
}
}
?>
Wer kann mir dabei helfen. Sehe den Wald vor lauter Bäumen nicht mehr!
Kommentar