Heim >Backend-Entwicklung >PHP-Tutorial >目录导航文件的php实现代码

目录导航文件的php实现代码

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-07-25 09:00:261217Durchsuche
用php代码实现一个目录导航的功能,将指定目录中指定扩展名的文件加上超链接,很实用的功能,有需要的朋友,可以参考下。

以下代码实现: 把指定的目录里中指定扩展名的文件加上超连接,也可以忽略某些指定的文件不作导航。

<?php
/**
 * 遍历目录 文件导航
 * by 程序员之家 bbs.it-home.org
*/
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()
?>


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
Vorheriger Artikel:php实现文件下载的代码 Nächster Artikel:php禁止ip访问的函数