当前位置:Gxlcms > PHP教程 > PHP下载时网页没法执行其他动作

PHP下载时网页没法执行其他动作

时间:2021-07-01 10:21:17 帮助过:20人阅读

PHP 下载时网页无法执行其他动作
我有一个页面是下载的,代码如下
Header ( 'Cache-Control: no-cache, must-revalidate' );
Header ( 'Content-type: application/octet-stream' );
Header ( 'Accept-Ranges: bytes' );
Header ( 'Content-Length:'.$this->_filesizebytes );
Header ( 'Content-Disposition: attachment; filename="'.$this->_filename.'"' );
$file = fopen ( $this->_fileFullPath, "r" );
$buffer = round(1024);
while ( ! feof ( $file ) ) {
echo fread ( $file, $buffer );
flush();
}
fclose ( $file );
问题是当我执行下载的同时再做其他动作的时候,就会停止响应,然后等文件下载完毕后再执行操作,在本地或者远端服务器都是这样,请问这是为什么呀?
谢谢
PHP 服务器 Buffer

分享到:


------解决方案--------------------
如果没有使用 session 应该不会出现你说的现象

人气教程排行