页面内容类型

时间:2010-09-24 19:15:53

标签: php image download types

我有一个指向图片的页面链接列表。当我点击一些图像在浏览器中打开时,我需要使其可下载(使用必须看到窗口保存图像)。正如我所说,我必须制作脚本(仅限PHP),并在链接地址中使用它,将图像名称传递给它。然后,以某种方式更改内容类型页面并要求用户下载文件。 你能用这个脚本帮我吗?

1 个答案:

答案 0 :(得分:1)

来自PHP.net

<?php
$file = 'monkey.gif';

if (file_exists($file)) {
    header('Content-Description: File Transfer');
    header('Content-Type: application/octet-stream');
    header('Content-Disposition: attachment; filename='.basename($file));
    header('Content-Transfer-Encoding: binary');
    header('Expires: 0');
    header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
    header('Pragma: public');
    header('Content-Length: ' . filesize($file));
    ob_clean();
    flush();
    readfile($file);
}
?>