链接文件 (php)
我之前问过如何获取目录的内容,我得到了建议的 dirscan() 这正是我所需要的。
现在我想要它,以便文件是重定向到相应文件的链接。因此,如果有一个名为“book.pdf”的文件,您可以单击它,它将打开“book.pdf”。
现在我这样做了:
<?php
$dir = '/books';
$files = scandir($dir);
foreach($files as $file) {
echo "$file<br/>";
}
?>
谢谢!
I asked before how to get the content of a directory and I got suggested dirscan() which was exactly what I needed.
Now I want it so that the files are links redirected to the corresponding file. So if there was a file named 'book.pdf', you could click it and it would open 'book.pdf'.
Right now I did this:
<?php
$dir = '/books';
$files = scandir($dir);
foreach($files as $file) {
echo "$file<br/>";
}
?>
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用 HTML 锚标记怎么样?
$file
what about using HTML anchor tag?
<a href="/books/$file">$file</a>
呃,给他们加上链接吗?
与其说这是关于 PHP,不如说是关于(非常基本的)HTML。
Uh, make them links?
This is not so much about PHP, more about (very basic) HTML.
echo "$file"
echo "<a href='$dir/$file'>$file</a>"
我想说你只是让它们成为一个 html 链接?快速的一段代码:
I'd say you just make them a html link? Quick piece of code: