|
<?php
function navbar(){
$files = dir("."); //指定目錄
$pipe = " | "; //管道符
//通過以下的循環(huán)搜索目錄中所有文件
while ($current = $files->read()) {
//ignor all files not of htm type.
if (strpos($current, "php")!= FALSE) //設(shè)定后綴為php的文件將被導(dǎo)航
//忽略自己(如 index.html)
{ if (strpos($current, "ndex") == FALSE)
{
print "<a href='";
print $current;
print "'>";
print $current;
print "</a>";
print $pipe;
};
};
};
};
navbar() //調(diào)用函數(shù)
?>
php技術(shù):非常好的目錄導(dǎo)航文件代碼,轉(zhuǎn)載需保留來源!
鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請第一時(shí)間聯(lián)系我們修改或刪除,多謝。