這個程式碼雖然短小,但很實用,它可以輕鬆建立你指定的目錄裡的指定後綴名稱檔案的超連接,而且可以設定,不會將指定的目錄首頁導航。
function navbar(){
$files = dir("."); //指定目錄
$pipe = " | "; //管道符//透過以下的循環搜尋目錄中所有檔案
while ($current = $files->read()) {
//ignor all files not of htm type.
if (strpos($ current, "php")!= FALSE) //設定後綴為PHP的文件將被導航
//忽略自己(如index.html)
== FALSE)
{
print "";
print $current;
print " a>";
print $pipe;
}; navbar() //呼叫函數
?>
http://www.bkjia.com/PHPjc/316316.html