Questions tagged «resume-download»

13
使用PHP发送文件时可恢复下载?
由于我们不想公开可下载文件的绝对路径,因此我们使用PHP脚本来隧穿文件下载。 header("Content-Type: $ctype"); header("Content-Length: " . filesize($file)); header("Content-Disposition: attachment; filename=\"$fileName\""); readfile($file); 不幸的是,我们注意到最终用户无法恢复通过此脚本进行的下载。 有什么方法可以通过这种基于PHP的解决方案来支持可恢复的下载吗?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.