以下代码实现:
把指定的目录里中指定扩展名的文件加上超连接,也可以忽略某些指定的文件不作导航。
<?php /** * 遍历目录 文件导航 * by 脚本学堂 www.jb200.com */ function navbar(){ $files = dir("."); //指定目录 $pipe = " | "; //管道符 //遍历目录中所有文件 while ($current = $files->read()) { //ignor all files not of htm type. if (strpos($current, "php")!= FALSE) //设定php文件被导航 //忽略自己(如 index.html) { if (strpos($current, "ndex") == FALSE) { print "<a href='"; print $current; print "'>"; print $current; print "</a>"; print $pipe; }; }; }; }; //调用函数 navbar() ?>