单击PHP下载图像

时间:2015-07-03 17:07:38

标签: php

此代码非常清晰整洁,但由于某些原因它找不到图像,因此在到达PHP下载文件后会显示“未找到文件”消息。无法通过相对路径或绝对路径找到图像的原因是什么?

<?php

$file = $_GET['file'];

download_file($file);

function download_file( $fullPath ){

// Must be fresh start
if( headers_sent() )
die('Headers Sent');

// Required for some browsers
if(ini_get('zlib.output_compression'))
ini_set('zlib.output_compression', 'Off');

// File Exists?
if( file_exists($fullPath) ){


// Parse Info / Get Extension
$fsize = filesize($fullPath);
$path_parts = pathinfo($fullPath);
$ext = strtolower($path_parts["extension"]);

// Determine Content Type
switch ($ext) {
  case "pdf": $ctype="application/pdf"; break;
  case "exe": $ctype="application/octet-stream"; break;
  case "zip": $ctype="application/zip"; break;
  case "doc": $ctype="application/msword"; break;
  case "xls": $ctype="application/vnd.ms-excel"; break;
  case "ppt": $ctype="application/vnd.ms-powerpoint"; break;
  case "gif": $ctype="image/gif"; break;
  case "png": $ctype="image/png"; break;
  case "jpeg":
  case "jpg": $ctype="image/jpg"; break;
  default: $ctype="application/force-download";
}

header("Pragma: public"); // required
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Cache-Control: private",false); // required for certain browsers
header("Content-Type: $ctype");
header("Content-Disposition: attachment; filename=\"".basename($fullPath)."\";" );
header("Content-Transfer-Encoding: binary");
header("Content-Length: ".$fsize);
ob_clean();
flush();
readfile( $fullPath );

} else
die('File Not Found');

}
?>

HTML

我使用了相对路径和绝对路径,但它还没有得到图像

<a href="/php/download.php?file=path/<?=$row['/images/image01.jpg']?>">Download</a>

<a href="/php/download.php?file=path/<?=$row['http://***.com/images/image01.jpg']?>">Download</a>

2 个答案:

答案 0 :(得分:1)

将以下代码命名为download.php

<?php

$file = $_GET['f'];

header("Expires: 0");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
header("Pragma: no-cache");

$ext = pathinfo($file, PATHINFO_EXTENSION);
$basename = pathinfo($file, PATHINFO_BASENAME);

header("Content-type: application/".$ext);
// tell file size
header('Content-length: '.filesize($file));
// set file name
header("Content-Disposition: attachment; filename=\"$basename\"");
readfile($file);
// Exit script. So that no useless data is output.
exit;
?>

并将其与其他文件一起保存。

下载:

假设您将文件download.php放在根文件夹中,然后只提供图像/文件的相对路径:

<a href="download.php?f=images/image.jpg">Download</a>

或者如果你将download.php放在根文件夹中的php文件夹中,而images文件夹也在根文件夹中,那么:

<a href="download.php?f=../images/image.jpg">Download</a>

此代码适用于强制下载任何扩展程序的文件。

我使用 pathinfo (手动http://php.net/manual/en/function.pathinfo.php)以获取扩展程序,因此 通过删除 来减少代码 您使用的开关案例 使其更通用 (即,代码可用于任何文件类型)。

答案 1 :(得分:0)

此代码效果很好,只需删除

path/<?=$row['/images/image01.jpg']?>

并添加名称文件:image01.jpg like

<a href="/php/download.php?file=image01.jpg">Download1</a>

然后将您的php文件移动到上传图像的目录。

希望对某人有所帮助。问候。