目录导航文件的php实现代码
程序员文章站
2022-04-04 17:40:27
...
用php代码实现一个目录导航的功能,将指定目录中指定扩展名的文件加上超链接,很实用的功能,有需要的朋友,可以参考下。
以下代码实现: 把指定的目录里中指定扩展名的文件加上超连接,也可以忽略某些指定的文件不作导航。 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() ?> |
上一篇: php如何跳转重定向页面
下一篇: jquery让select不选中怎么实现