链接到代码自动

时间:2017-04-22 16:04:14

标签: php html

我每天都会扫描很多PDF文件。我也有自己的网站。

这是 index.html

<html>
  <body>This is my site and docs</body>
</html>

我想问一下,当我在FTP服务器上添加文件时,是否可以在 index.html 代码的代码中创建一个代码。目前我正在使用Filezilla。

这意味着如果我在某个特定文件夹中的服务器上上传 .pdf ,则应自动写入 index.html

<a href = "filename.pdf">filename</a>

这是否有插件?

感谢您的帮助

1 个答案:

答案 0 :(得分:1)

$files = scandir(__DIR__);
$files = array_diff($files, array('.', '..'));

foreach ($files as $file) {

    echo "<a href='" . $file . "'>" . $file . "</a><br>";
}
  1. 扫描目录
  2. 删除点
  3. 将文件输出到页面中,并可能添加链接