打印

PHP程序指定目录里的指定后缀名文件为超连接

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

TOP

当前时区 GMT-4, 现在时间是 2008-12-3 20:46
ComePlay8.Com
Powered by Discuz! 6.0.0 © 2001-2007 Comsenz Inc.
Processed in 0.049313 second(s), 10 queries, Gzip enabled
TOP
清除 Cookies - 联系我们 - 来玩吧 - Archiver - WAP
Designed By Discuz! Support Team