允许访问者下载我网站中的文件(php、javascript、html)

发布于 2024-10-19 22:08:36 字数 203 浏览 3 评论 0原文

在我的网站中,我希望允许访问者下载图片。 我按以下方式显示图片

<a href="" ><img  src = "picture" .../> </A>

当访问者点击链接时,如何开始下载图片?

第二个问题,如果我有很多链接,我如何将图片压缩到一个目录中并允许下载zip?

In my web site, i would like to allow visitors to download pictures.
I displaye the picture in the following way

<a href="" ><img  src = "picture" .../> </A>

When the visitor clik on the link, how to begin the downloading of the picture ??

The second question, if i have many links, how can i zip pictures in a single directory and allow the downloding of the the zip?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

执手闯天涯 2024-10-26 22:08:36

这是下载文件的 PHP。

<?php
$rootPath = "files/";

$filename = "output.txt";
$orig_filename = $_POST[ 'filename' ];

$filename = $rootPath . $filename;
$filesize = filesize( $filename );

if ( $fd = fopen( $filename, "r" ))
{
    header( "Content-type: application/octet-stream" );
    header( "Content-Disposition: filename=\"$orig_filename\"" );
    header( "Content-length: $filesize " );
    header( "Cache-control: private" );

    while( !feof( $fd ))
    {
        $buffer = fread( $fd, 1024 );
        echo $buffer;
    }

    fclose( $fd );
}

exit;

?>

Here's the PHP to download a file.

<?php
$rootPath = "files/";

$filename = "output.txt";
$orig_filename = $_POST[ 'filename' ];

$filename = $rootPath . $filename;
$filesize = filesize( $filename );

if ( $fd = fopen( $filename, "r" ))
{
    header( "Content-type: application/octet-stream" );
    header( "Content-Disposition: filename=\"$orig_filename\"" );
    header( "Content-length: $filesize " );
    header( "Cache-control: private" );

    while( !feof( $fd ))
    {
        $buffer = fread( $fd, 1024 );
        echo $buffer;
    }

    fclose( $fd );
}

exit;

?>
淡莣 2024-10-26 22:08:36
<a href="/path/to/image" download="ImageName" title="ImageName">
    <img src="/path/to/image" alt="ImageName">
</a>

但这仅适用于现代浏览器......

<a href="/path/to/image" download="ImageName" title="ImageName">
    <img src="/path/to/image" alt="ImageName">
</a>

This only works on modern browsers though....

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文