[2025-04-08T10:27:09+08:00][error] [1]Allowed memory size of 524288000 bytes exhausted (tried to allocate 655360 bytes)[/www/wwwroot/shangpin.phpicu.com/vendor/phpoffice/phpspreadsheet/src/PhpSpreadsheet/Worksheet/Worksheet.php:3105]
解决办法
将改行“$returnValue[$rowRef][$columnRef] = $nullValue;”替换为
if(!empty($returnValue[$rowRef][$columnRef])){
$returnValue[$rowRef][$columnRef] = $nullValue;
}
即可!