我的公用文件夹中有files(png, jpg, pdf)
张图片。我需要将选定的一个下载到我的Windows下载文件夹中或我的机器中的某个位置。
我使用了以下几行代码:
$response = new BinaryFileResponse($this->uploadDirectory . '/' . $record->getTempFilename());
$response->setContentDisposition(ResponseHeaderBag::DISPOSITION_ATTACHMENT, 'pdf.png');
return $response;
这将返回Error: out of memory
。我的文件大小甚至都不是1MB
。
我尝试在此行中添加ini_set('memory_limit', '-1');
,但无法下载。
有人可以帮助我吗?