我在测试查找/替换功能时遇到内存问题。
假设搜索主题是:
$主题 = "我在 A+ 杂志上写了一篇文章。 它很长,充满了文字。 我想用链接替换本文中的每个 A+ 实例 到 A+ 专用页面。
";
要找到的字符串:
$查找='A+'; $find = preg_quote($find,'/');
替换函数回调:
函数replaceCallback($match) { if (is_array($match)) { return '<a class="tag" rel="tag-definition" title="点击了解更多关于 ' .stripslashes($match[0]) . '" href="?tag=' . $match[0] .'">'。stripslashes($match[0]) 。'</a>'; } }
和电话:
$result = preg_replace_callback($find, 'replaceCallback', $subject);
现在,从数据库中提取了完整的搜索模式。到目前为止,它是:
$find = '/(?![^<]+>)\b(voice recognition|test project reference|test|synesthesia|Superflux 2007|Suhjung Hur|scripts|Salvino a. Salvaggio|Professional Lighting Design Magazine|PLDChina|Nicolas Schöffer|Naziha Mestaoui|Nabi Art Center|Markos Novak|Mapping|Manuel Abendroth|liquid architecture|LAb[au] laboratory for Architecture and Urbanism|l'Arca Edizioni|l' ARCA n° 176 _ December 2002|Jérôme Decock|imagineering|hypertext|hypermedia|Game of Life|galerie Roger Tator|eversion|El Lissitzky|Bernhard Tschumi|Alexandre Plennevaux|A+)\b/s';
然后在 7 个 mysql 表的 23 列中查找此 $find 模式(如果找到则替换)。
使用建议的 preg_replace() 而不是 preg_replace_callback() 似乎已经解决了内存问题,但我遇到了新问题:preg_replace() 返回的主题缺少很多内容......
更新:
内容丢失是由于使用 preg_quote($find,'/'); 它现在可以工作了,除了... 'A+' 在这个过程之后变成了 'A '。