标签: php mysql memory-management memory-limit
我有一个脚本,我一次获取725000条记录并循环创建数组元素。最初它说内存耗尽。然后,在我的脚本中我添加了 -
ini_set('memory_limit', '-1');
在此之后,它抛出错误 -
Out of memory (allocated 1585446912) (tried to allocate 52 bytes)
有什么建议吗?