您好,欢迎来到五一七教育网。
搜索
您的当前位置:首页非常好的php目录导航文件代码

非常好的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() //调用函数 
?>

这篇文章就到这了,希望大家以后多多支持脚本之家。

Copyright © 2019- 517ttc.cn 版权所有 赣ICP备2024042791号-8

违法及侵权请联系:TEL:199 18 7713 E-MAIL:2724546146@qq.com

本站由北京市万商天勤律师事务所王兴未律师提供法律服务