gpt4 book ai didi

php - 如何创建这种类型的index.php? (网站 map ?)

转载 作者:行者123 更新时间:2023-11-28 21:27:02 24 4
gpt4 key购买 nike

我有一个包含大量 .html 文件的文件夹

我的文件夹是 root/searches

现在我在“searches”文件夹中有大量文件“root/searches/example.html”。我想为此文件夹创建一个index.html“root/searches/index.html”

现在在这个index.html

我想超链接此文件夹中的所有文件。基本上就像站点地图。

注意:此文件夹中每秒都会创建新文件。因此我无法手动执行此操作。

这是我的文件夹:http://www.searchr.us/web-search/

谁能给我这个脚本或 HTML 吗?谢谢

最佳答案

这就是你所追求的吗?

$dir = '../dir';
$files = scandir($dir);

foreach($files as $file){
if($file == '.' || $file == '..' || !is_file($dir.'/'.$file)){
continue;
}
print "<a href=\"$file\">$file</a><br />";
}

这将遍历文件夹中的所有文件并打印指向它们的链接。

关于php - 如何创建这种类型的index.php? (网站 map ?),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4749666/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com