Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个验证大文件(视频)下载的 php。
例子:
<?php // proxy.php // validations here $contents=file_get_contents("video.mp4"); // headers here echo $contents;
如果用户请求文件(通过 proxy.php)并关闭窗口/浏览器(或浏览),脚本执行会发生什么?
当不再有用户时,我想避免脚本继续被执行(以及视频被下载)。