php强制性文件下载的函数

发布时间:2020-08-22编辑:脚本学堂
以下php函数实现为用户提供强制性的文件下载功能,有需要的朋友可以参考下。
代码如下:
复制代码 代码如下:
<?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强制下载mp3文件的实现代码
php强制文件下载(避免文件或图片直接在浏览器中打开)
php 强制文件下载的一段代码
php强制下载指定类型文件的代码
php 强制文件下载的实现代码一例