PHP强制性文件下载,为用户提供强制性的文件下载功能
<pre class="brush:php;"> 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 强制 文件 下载