我每天都会扫描很多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>
这是否有插件?
感谢您的帮助
答案 0 :(得分:1)
$files = scandir(__DIR__);
$files = array_diff($files, array('.', '..'));
foreach ($files as $file) {
echo "<a href='" . $file . "'>" . $file . "</a><br>";
}