ich habe hier mal eine funktion erstellt, die allerding nur die oberste ebene des ordners durchsucht, wie kann ich die erweitern, das auch alle unterordner im module ordner druchsucht werden....hat jemand eine idee....
Code:
if ( ! isset( $mod ) )
$mod = "rss_info";
$basepath = "module";
$dp = opendir( $basepath );
if ( $dp ) {
while ( $dir = readdir( $dp ) ) {
if ( $dir == "." || $dir == ".." )
continue;
if ( file_exists( $basepath . "/" . $dir . "/" . $mod . ".php" ) ) {
$inc = $basepath . "/" . $dir . "/" . $mod . ".php";
break;
} else if ( file_exists( $basepath . "/" . $dir . "/" . $mod . ".htm" ) ) {
$inc = $basepath . "/" . $dir . "/" . $mod . ".htm";
break;
}
}
closedir( $dp );
if ( isset( $inc ) )
include $inc;
else
print "Dieses Seite existiert noch nicht.";
} else {
print "Fehler beim lesen des Verzeichnis " . $basepath;
}