gpt4 book ai didi

PHP 在完全下载后停止读取远程文件

转载 作者:可可西里 更新时间:2023-11-01 13:23:02 26 4
gpt4 key购买 nike

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

PHP Stop Remote File Download if it Exceeds 5mb

代码 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
}

最佳答案

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

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

关于PHP 在完全下载后停止读取远程文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13964547/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com