2011-08-27 23 views
0

大文件使用的http://php.net/manual/en/function.fread.php评论中发现一个类似的脚本,我已经设计了这个功能:流与PHP脚本

function readfile_chunked_remote($filename, $seek = 0, $retbytes = true, $timeout = 3) { 
    set_time_limit(0); 
    $defaultchunksize = 1024*1024; 
    $chunksize = $defaultchunksize; 
    $buffer = ''; 
    $cnt = 0; 
    $remotereadfile = false; 

    if (preg_match('/[a-zA-Z]+:\/\//', $filename)) 
     $remotereadfile = true; 

    $handle = @fopen($filename, 'rb'); 

    if ($handle === false) { 
     return false; 
    } 

    header("Content-Type: application/octet-stream; "); 
    header("Content-Transfer-Encoding: binary"); 
    header("Cache-Control: no-cache, must-revalidate"); 
    header("Content-Length: " . filesize($filename)); 
    header("Content-Disposition: attachment; filename=\"" . basename($filename) . "\""); 

    stream_set_timeout($handle, $timeout); 

    if ($seek != 0 && !$remotereadfile) 
     fseek($handle, $seek); 

    while (!feof($handle)) { 

     if ($remotereadfile && $seek != 0 && $cnt+$chunksize > $seek) 
      $chunksize = $seek-$cnt; 
     else 
      $chunksize = $defaultchunksize; 

     $buffer = @fread($handle, $chunksize); 

     if ($retbytes || ($remotereadfile && $seek != 0)) { 
      $cnt += strlen($buffer); 
     } 

     if (!$remotereadfile || ($remotereadfile && $cnt > $seek)) 
      echo $buffer; 

     ob_flush(); 
     flush(); 
    } 

    $info = stream_get_meta_data($handle); 

    $status = fclose($handle); 

    if ($info['timed_out']) 
     return false; 

    if ($retbytes && $status) { 
     return $cnt; 
    } 

    return $status; 
} 

但是,它似乎仍然超过100MB左右的文件时间了..我哪里可能会出错?

+1

你试过用'ReadFile的()'? – arnaud576875

+0

我的印象是readfile()将整个文件加载到内存中。 – Bryan

+0

不,它将文件流式传输到客户端 – arnaud576875

回答

0

尝试xmoovstream。它会为你做。开源。

0

根据手册,使用readfile()

注: ReadFile的()不会出现内存问题,发送大文件,即使上了自己。如果遇到内存不足错误,请确保使用ob_get_level()关闭输出缓冲。

http://php.net/readfile