欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

preg_replace_callback出现内存泄露。有人解决了么?该怎么处理

程序员文章站 2024-01-31 10:13:11
...
preg_replace_callback出现内存泄露。有人解决了么?
环境:php5.4.22 +centos 5.4+nginx
--------------------------------------------------------------------------------------------------------------
下面这个问题发现的:http://bbs.csdn.net/topics/390784375
----------------------------------
同样问题:
http://bbs.csdn.net/topics/390693060
----------------------------------------------------------------------
测试代码:

$content='asdfsadfasdfsadfasdfsadfasdfsadfasdfsadfasdfsadf testtest';
$a=123;
$content= preg_replace_callback('/(.*?)/is', function($match) use($a){return 123;}, $content);
echo $content;

----------------------------------------------------运行结果-----------------------
Fatal error: Allowed memory size of 134217728 bytes exhausted (tried to allocate 3086503041 bytes) in /data/web/partTime/test2.php on line 4

---------------------------------------------
------解决思路----------------------
如果是:
先 preg_match_all
再 preg_replace
也会出问题吗?
------解决思路----------------------
既然 preg_replace_callback 会有内存泄露
那么应该在任何文件中都是这样的

你可以单独用一个文件测试一下
$content = preg_replace_callback('/[a-z]/', function  ( $matches )  {
return strtoupper($matches[0]);
}, 'abdfrew');
echo $content;

与之等价的分立代码为
$content = 'abdfrew';
preg_match_all('/[a-z]/', $content, $matches );
foreach($matches[0] as $v) $r[$v] = strtoupper($v);
$content = strtr($content, $r);
echo $content;

先分别运行一下,看有无问题
preg_replace_callback出现内存泄露。有人解决了么?该怎么处理

声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn核实处理。

相关文章

相关视频