PHP强制性文件下载

2011-01-15 阅读 42

PHP强制性文件下载,为用户提供强制性的文件下载功能

<pre class="brush:php;">    function force_download($file)
{
    if ((isset($file))&amp;&amp;(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 强制 文件 下载

更新于 2023年03月28日