Upper memory limit for PHP/Apache

前端 未结 9 1079
没有蜡笔的小新
没有蜡笔的小新 2020-12-01 16:23

I\'m getting the error when I run my PHP script....

Fatal error: Out of memory (allocated 1827405824) (tried to allocate 88800 bytes)

I\'ve

9条回答
  •  自闭症患者
    2020-12-01 16:38

    Which PHP version are you using?

    The memory_limit variable is, or was, contained in a 32-bit integer, so can not go above 2GB.

    See: http://bugs.php.net/bug.php?id=39132&edit=1

    From the bottom comment on that bug report, it might be the routine that translates the human readable form to a number, try putting it in digits.

提交回复
热议问题