PHP 强制文件下载
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 强制文件下载相关的知识,希望对你有一定的参考价值。
/********************
*@file - path to file
*/
function force_download($file)
{
if ((isset($file))&&(file_exists($file))) {
header("Content-length: ".filesize($file));
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename="' . $file . '"');
readfile("$file");
} else {
echo "No file selected";
}
}
以上是关于PHP 强制文件下载的主要内容,如果未能解决你的问题,请参考以下文章
PHP:为啥强制 mime 下载会添加 2 个额外的空行?
php中强制下载的问题
强制下载提示php损坏文件
强制使用 PHP 下载文件
PHP 强制文件下载
PHP 强制文件下载的函数。