我正在替换与 '##' in 匹配的单词$newstring
,这会成功替换 localhost 上的所有单词,但当我在实时服务器上运行此代码时会忽略许多单词。
有什么建议可能导致此问题或我该如何解决?
for($i=0;$i<count($result);$i++)
{
$commanword = trim(strtolower($result[$i]['Words']));
$newstring = preg_replace("/\b".$commanword."\b/i", '##', $newstring);
}