gpt4 book ai didi

php - 如何使 Zip Blob 文件准备好从 MySQL 数据库下载

转载 作者:行者123 更新时间:2023-11-29 09:05:17 29 4
gpt4 key购买 nike

我创建了一个数据库,其中包含一个包含 Blob 的表,我在其中保存了 ZIP 和 PDF 文件。问题是,如何使这些文件可供通过 PHP 脚本下载?

最佳答案

像这样:

$name = "file.zip"; // or file.pdf
$file_content = $blob_row['file_content'];

header('Content-Description: File Transfer');

header('Content-Type: archive/zip'); // or archive/pdf

header('Content-Disposition: attachment; filename=' . $name);

header('Expires: 0');
header('Cache-Control: must-revalidate, post-check=0, pre-check=0');
header('Pragma: public');
header('Content-Length: ' . strlen($file_content));
ob_clean();
flush();

echo $file_content;
exit;

关于php - 如何使 Zip Blob 文件准备好从 MySQL 数据库下载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7198788/

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