return download(xxx) 文件太大会导致 Allowed memory size of xxxxx bytes exhausted
Author: mgzhenhongCreated Jun 1, 2025Updated Jul 16, 2026
vendor/topthink/framework/src/think/response/File.php line 76
return $this->isContent ? $data : file_get_contents($data);
如果文件太大会导致内存不足. 这里能否改为返回一个具体执行输出的 callable $outputCallback;
Source: top-think/think