pid:259 Worker[259] process terminated with ERROR: E_ERROR "Allowed memory size of 268435456 bytes exhausted (tried to allocate 56535216 bytes) in /home/webman/vendor/workerman/workerman/Protocols/Http/Request.php on line 515"
错误如上,我设置的PHP内存大小为256M,当我上传53M 左右的文件时,提示我内存溢出,请问一下,这个内存是怎么计算的了?
每次上传53M的文件都报错?
嗯,每次都报错。
public function resourceAdd(Request $request) {
$file = $request->file('file');
return json(['code'=>1]);
}
上面代码,只要加上获取 file 的就报错。 $file = $request->file('file');