我的应用程序应该向浏览器返回一个大文件,即远程服务器。目前,该文件是从本地NodeJS服务器提供的。
我正在使用25GB的VirtualBox磁盘映像,只是为了确保它在流式传输时不存储在内存中。 这是我与
挣扎的相关代码 require __DIR__ . '/vendor/autoload.php';
use GuzzleHttp\Stream\Stream;
use GuzzleHttp\Stream\LimitStream;
$client = new \GuzzleHttp\Client();
logger('==== START REQUEST ====');
$res = $client->request('GET', 'http://localhost:3002/', [
'on_headers' => function (\Psr\Http\Message\ResponseInterface $response) use ($res) {
$length = $response->getHeaderLine('Content-Length');
logger('Content length is: ' . $length);
header('Content-Description: File Transfer');
header('Content-Type: application/octet-stream');
header('Content-Disposition: attachment; filename="testfile.zip"');
header('Expires: 0');
header('Cache-Control: must-revalidate');
header('Pragma: public');
header('Content-Length: ' . $length);
}
]);
$body = $res->getBody();
$read = 0;
while(!$body->eof()) {
logger("Reading chunk. " . $read);
$chunk = $body->read(8192);
$read += strlen($chunk);
echo $chunk;
}
logger('Read ' . $read . ' bytes');
logger("==== END REQUEST ====\n\n");
function logger($string) {
$myfile = fopen("log.txt", "a") or die ('Unable to open log file');
fwrite($myfile, "[" . date("d/m/Y H:i:s") . "] " . $string . "\n");
fclose($myfile);
}
即使$body = $res->getBody();
应该返回一个流,它也会使用交换数据快速填满磁盘,这意味着它在流回客户端之前尝试将其保存在内存中,但这不是预期的行为。我错过了什么?
答案 0 :(得分:4)
$res = $client->request('GET', 'http://localhost:3002/', [
'stream' => true,
'sink' => STDOUT, // Default output stream.
'on_headers' => ...
]);
在这些添加之后,您将能够按块传输响应块,而无需任何其他代码从响应正文流复制到STDOUT(使用echo
)。
但通常你不想这样做,因为你需要为每个活动客户端都有一个PHP进程(php-fpm或Apache的mod_php)。
如果您只想提供秘密文件,请尝试使用“内部重定向”:通过nginx的X-Accel-Redirect标头或Apache的X-Sendfile。您将获得相同的行为,但资源使用较少(因为在nginx的情况下高优化的事件循环)。有关配置详细信息,您可以阅读官方文档,当然还有其他SO问题(如this one)。