Fatal error: Allowed memory size of xxx bytes exhausted.(tried to allocate xxx bytes)

原来是php.ini中的内存分配的问题,默认php代码能够申请到的最大内存字节数就是134217728 bytes,如果代码执行的时候再需要更多的内存,就会报错了,于是就将php.ini文件中的配置改了一下

vim/etc/php.ini

memory_limit = 128M;//将128M改成了256M



你可能感兴趣的:(TO,memory,bytes,size,XXX,XXX,allowed,of,fatal,error:,allocate,bytes))