Heim  >  Artikel  >  Backend-Entwicklung  >  非常好的目录导航文件代码_PHP教程

非常好的目录导航文件代码_PHP教程

WBOY
WBOYOriginal
2016-07-21 16:03:14786Durchsuche

这个代码虽然短小,但很实用,它可以轻松建立你指定的目录里的指定后缀名文件的超连接,而且可以设定,不会将指定的目录首页导航。

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 "";
          print $current;
          print "
";
          print $pipe;
          };  
      };
      };
      };
navbar() //调用函数
?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/316316.htmlTechArticle这个代码虽然短小,但很实用,它可以轻松建立你指定的目录里的指定后缀名文件的超连接,而且可以设定,不会将指定的目录首页导航。...
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn