Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 60816089 bytes)

于 2024-04-27 发布 阅读量71  

超出内存限制 修改php.ini 配置

memory_limit = 128M 将数值改大 512M

或者直接在运行文件中添加

@ini_set('memory_limit', '512M');

重启服务器