专注于互联网--专注于架构

最新标签
网站地图
文章索引
Rss订阅

首页 »PHP教程 » php源代码:非常好的目录导航文件php代码 »正文

php源代码:非常好的目录导航文件php代码

来源: 发布时间:星期三, 2008年9月10日 浏览:123次 评论:0
这个代码虽然短小但很实用它可以轻松建立你指定的目录里的指定后缀名文件的超连接而且可以设定不会将指定的目录首页导航。

<?php



function navbar(){

$files
= dir(\".\"); //指定目录

$pipe = \" | \"; //管道符

//通过以下的循环搜索目录中所有文件

while ($current = $files->read()) {

//ignor all files not of htm type.

if (strpos($current, \"php\")!= FALSE) //设定后缀为PHP的文件将被导航

//忽略自己(如 )

{ if (strpos($current, \"ndex\") == FALSE)

{

print \"<a href=\'\";

print $current;

print \"\'>\";

print $current;

print \"</a>\";

print $pipe;

};

};

};

};

navbar() //调用函数

?>

相关文章

读者评论

  • 共0条 分0页

发表评论

  • 昵称:
  • 内容: