PHP下载超时移动问题

时间:2015-05-30 18:20:09

标签: php download apache2

可悲的是我的PHP下载脚本出了问题。
首先,通过Get Variable调用文件。
然后脚本搜索大小,类型并下载。
在我的电脑上,使用Chrome,所有都像魅力一样 但是当我尝试使用Safari在我的iPhone上下载文件时,它只会加载图片的一些像素,而不是因为网络连接被中断而停止:/

if(file_exists($file_url) OR @getimagesize($file_url))     {
$size = $row['size'] * 1024; // Dateigröße in Byte umrechnen
header("Content-Type: $type");
header('Content-disposition: attachment; filename="'.$file.'"');
header("Content-Length: ". $size);
header("Content-Transfer-Encoding: binary");
//ob_clean();
ob_end_clean();
flush();
readfile($file_url);

我做错了吗?

提前致谢!

0 个答案:

没有答案