非常好的php目录导航文件代码
<?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() //调用函数 ?> 这篇文章就到这了,希望大家以后多多支持脚本之家。 (编辑:焦作站长网) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |