PHP内存耗尽错误分析

WBOY
Libérer: 2016-06-20 12:33:17
original
1501 Les gens l'ont consulté

最近有人跟我反映主机上一个wordpress插件的使用过程中经常会出现错误,打开了php的dispaly_error功能之后,发现其报“Fatal error: Allowed memory size of 35389440 bytes exhausted(tried to allocate 1406507 bytes) in xxxxxx on line xxx”,意思是致命错误,内存被耗尽了。Google上搜索了一下,网上有很多这样的问题,答案也都一样,更改php的内存限制,把php.ini中的memory_limit改为更大的数值。

但是这里有一个很大的问题,php允许访问的内存大小是35389440字节,而实际要分配的只有1406507字节。为什么要分配的内存比实际允许访问的内存小还会引发致命错误呢?

查了很多这方面的资料,发现很多这样搜索结果,都是实际要分配的内存要小于允许的内存,但是没有找到对此的说明。

首先想到是不是PHP本身这个内存限制功能有bug,于是做了如下实验:

1,  生成一个10MB大小的文件 dd if=/dev/zero of=10mb bs=1M count=10

2,  生成如下php文件并访问:

<?phpini_set("memory_limit","2M");echo file_get_contents("./10mb");?>
Copier après la connexion

发现其报错“Fatal error: Allowed memory size of 2097152 bytes exhausted (tried to allocate 10493952 bytes)”,这个报错和我们设置的2M的内存限制,实际要分配10M的情况是一样的。这说明内存限制本身功能是没有问题的,报错的数据和实际的数据是能对上号的。

那么,上面的问题出在哪里呢?为什么实际要分配的内存比限制的内存要小,还会导致出错?又查了一下php关于memory_limit的说明:

This sets the maximum amount of memory in bytes that a script is allowed to allocate. This helps prevent poorly written scripts for eating up all available memory on a server. Note that to have no memory limit, set this directive to -1.

这里也没有对上述问题进行说明,只是告诉我们memory_limit用来限制一个脚本中分配的内存大小用来保护服务器免受poorly written scripts的影响。也就是说memory_limit是限制单个PHP运行脚本的可访问内存大小的,那会不会存在一种可能,整个线程中的多个操作加起来的内存超过了总限制大小,但单个操作的内存又只占整个限制的很小一部分,而最后那根压死骆驼的稻草是PHP报错出来的,所以显示出试图访问内存小于限制的内存大小?为了验证这个猜想,我把上述PHP文件改成这样并访问:

<?phpini_set("memory_limit","15M");$a = file_get_contents("./10mb");$b = file_get_contents("./10mb");?>
Copier après la connexion

发现其报错“Fatal error: Allowed memory size of 15728640 bytes exhausted (tried to allocate 10493952 bytes)”,实际要分配10M内存,小于允许访问的15M,验证了前面的猜想。也就是说, 程序在运行时如果超过设置的内存,PHP报错信息只会提示当前操作试图访问的内存大小。

那么直接增加内存限制的大小就可以解决这个问题了,限制的大小可以通过在php的shutdown函数上注册memory_get_usage函数来统计网站的内存消耗,取一个合适的值即可。

参考资料

  1. memory limit

Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal