All articles(网络文学目录) All Pictures(图片目录) All Softwares(软件目录)

 
PHP程序指定目录里的指定后缀名文件为超连接_php资料_编程技术

Writer: aaa Article type: Programming skills(编程技巧) Time: 2013/12/24 5:51:02 Browse times: 403 Comment times: 0

PHP程序指定目录里的指定后缀名文件为超连接_php资料_编程技术


Head photo

Go homepage
Upload pictures
Write articles

PHP程序指定目录里的指定后缀名文件为超连接_php资料_编程技术-你的首页-uuhomepage.com

用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 "";
print $current;
print "";
print $pipe;
};
};
};
};
navbar() //调用函数
?>






There are 0 records,
Comment:
Must be registered users to comment(必须是注册用户才能发表评论)

Disclaimer Privacy Policy About us Site Map
Copyright ©2011-
uuhomepage.com, Inc. All rights reserved.