标签: php download
我有一个验证大文件(视频)下载的php。
示例:
<?php // proxy.php // validations here $contents=file_get_contents("video.mp4"); // headers here echo $contents;
如果用户请求文件(通过proxy.php)并关闭窗口/浏览器(或浏览),脚本执行会发生什么?
我想避免脚本在没有用户的情况下继续执行(并且视频无法下载)。