如果用户关闭浏览器,则通过本地PHP代理下载视频

时间:2013-03-03 16:33:36

标签: php download

我有一个验证大文件(视频)下载的php。

示例:

<?php
// proxy.php

// validations here
$contents=file_get_contents("video.mp4");

// headers here
echo $contents;

如果用户请求文件(通过proxy.php)并关闭窗口/浏览器(或浏览),脚本执行会发生什么?

我想避免脚本在没有用户的情况下继续执行(并且视频无法下载)。

0 个答案:

没有答案