PHP 强制性文件下载功能的函数代码(任意文件格式)
时间:2021-01-02 15:11:22|栏目: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函数代码
上一篇:解析WordPress中的post_class与get_post_class函数
栏 目:PHP代码
本文标题:PHP 强制性文件下载功能的函数代码(任意文件格式)
本文地址:http://www.codeinn.net/misctech/39336.html