链接文件 (php)

发布于 2024-10-12 14:32:47 字数 297 浏览 2 评论 0原文


我之前问过如何获取目录的内容,我得到了建议的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

盗心人 2024-10-19 14:32:47

使用 HTML 锚标记怎么样?
$file

what about using HTML anchor tag?
<a href="/books/$file">$file</a>

风吹过旳痕迹 2024-10-19 14:32:47

呃,给他们加上链接吗?

echo "<a href=\"$file\">$file</a>"

与其说这是关于 PHP,不如说是关于(非常基本的)HTML。

Uh, make them links?

echo "<a href=\"$file\">$file</a>"

This is not so much about PHP, more about (very basic) HTML.

千と千尋 2024-10-19 14:32:47

echo "$file"

echo "<a href='$dir/$file'>$file</a>"

夜无邪 2024-10-19 14:32:47

我想说你只是让它们成为一个 html 链接?快速的一段代码:

  echo "<a href=\"{$dir}/{$file}\">{$file}</a><br/>";

I'd say you just make them a html link? Quick piece of code:

  echo "<a href=\"{$dir}/{$file}\">{$file}</a><br/>";
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文