gpt4 book ai didi

PHP 输出带标题的文件附件

转载 作者:塔克拉玛干 更新时间:2023-11-03 05:34:14 24 4
gpt4 key购买 nike

在阅读了这里的几篇文章后,我制定了这个函数,它是一堆其他函数的混合物:

function outputFile( $filePath, $fileName, $mimeType = '' ) {
// Setup
$mimeTypes = array(
'pdf' => 'application/pdf',
'txt' => 'text/plain',
'html' => 'text/html',
'exe' => 'application/octet-stream',
'zip' => 'application/zip',
'doc' => 'application/msword',
'xls' => 'application/vnd.ms-excel',
'ppt' => 'application/vnd.ms-powerpoint',
'gif' => 'image/gif',
'png' => 'image/png',
'jpeg' => 'image/jpg',
'jpg' => 'image/jpg',
'php' => 'text/plain'
);

// Send Headers
//-- next line fixed as per suggestion --
header('Content-Type: ' . $mimeTypes[$mimeType]);
header('Content-Disposition: attachment; filename="' . $fileName . '"');
header('Content-Transfer-Encoding: binary');
header('Accept-Ranges: bytes');
header('Cache-Control: private');
header('Pragma: private');
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
readfile($filePath);

}

我有一个 php 页面 (file.php),它执行类似这样的操作(删除了许多其他代码):

   // I run this thru a safe function not shown here
$safe_filename = $_GET['filename'];
outputFile ( "/the/file/path/{$safe_filename}",
$safe_filename,
substr($safe_filename, -3) );

看起来它应该可以工作,而且几乎可以工作,但我遇到了以下问题:

  1. 当它是一个文本文件时,我得到一个奇怪的符号作为文本文档中的第一个字母

  2. 当它是一个 word 文档时,它是损坏的(大概是相同的第一位或字节丢弃了东西)。

  3. 我认为所有其他文件类型都会损坏 - 甚至都没有尝试过

对我做错了什么有什么想法吗?

谢谢-

更新:按照建议更改了代码行 - 问题仍然存在。

最佳答案

好的,我明白了。

上面的脚本确实有效。

发生的事情是我有一系列 include_once 文件,其中一个有一个空行导致了问题。

关于PHP 输出带标题的文件附件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/896178/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com