6

我收到一个 30 秒的超时错误,因为代码在文件低于时会不断检查文件是否超过 5mb。该代码旨在拒绝超过 5mb 的文件,但我还需要它在文件低于 5mb 时停止执行。有没有办法检查文件传输块以查看它是否为空?我目前正在使用 DaveRandom 的这个例子:

如果超过 5mb,PHP 停止远程文件下载

DaveRandom的代码:

$url = 'http://www.spacetelescope.org/static/archives/images/large/heic0601a.jpg';
$file = '../temp/test.jpg';
$limit = 5 * 1024 * 1024; // 5MB

if (!$rfp = fopen($url, 'r')) {
  // error, could not open remote file
}
if (!$lfp = fopen($file, 'w')) {
  // error, could not open local file
}

// Check the content-length for exceeding the limit
foreach ($http_response_header as $header) {
  if (preg_match('/^\s*content-length\s*:\s*(\d+)\s*$/', $header, $matches)) {
    if ($matches[1] > $limit) {
      // error, file too large
    }
  }
}

$downloaded = 0;

while ($downloaded < $limit) {
  $chunk = fread($rfp, 8192);
  fwrite($lfp, $chunk);
  $downloaded += strlen($chunk);
}

if ($downloaded > $limit) {
  // error, file too large
  unlink($file); // delete local data
} else {
  // success
}
4

1 回答 1

5

您应该检查是否已到达文件末尾:

while (!feof($rfp) && $downloaded < $limit) {
  $chunk = fread($rfp, 8192);
  fwrite($lfp, $chunk);
  $downloaded += strlen($chunk);
}
于 2012-12-20T02:55:47.730 回答