非常好的目录导航文件代码
发布时间:2006-10-14 2:44:17   收集提供:gaoqian
这个代码虽然短小,但很实用,它可以轻松建立你指定的目录里的指定后缀名文件的超连接,而且可以设定,不会将指定的目录首页导航。
<?php

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() //调用函数
?>
 
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50