«
PHP程序指定目录里的指定后缀名文件为超连接

时间:2008-5-31    作者:Deri    分类: 分享


   <p>  这个代码虽然短小,但很实用,它可以轻松建立你指定的目录里的指定后缀名文件的超连接,而且可以设定,不会将指定的目录首页导航。</p><code><?php<br />function navbar()<br />{<br />$files = dir("."); //指定目录<br />$pipe = " | ";  //管道符<br />//通过以下的循环搜索目录中所有文件<br />while ($current = $files->read())<br />  {<br />   //ignor all files not of htm type.<br />  if (strpos($current, "php")!= FALSE) //设定后缀为PHP的文件将被导航<br />    //忽略自己(如 index.html)<br />    { <br />     if (strpos($current, "ndex") == FALSE)<br />     {<br />       print "<a href='";<br />       print $current;<br />       print "'>";<br />       print $current;<br />       print "</a>";<br />       print $pipe;<br />     }; <br />    };<br />   };<br />};<br />navbar() //调用函数<br />?></code></p>