我有一个文件 filter.txt,其中包含我想在字符串上突出显示的单词。
过滤器.txt:test1 test2
我的解决方案不起作用:
<?php
$file = file_get_contents('/home/user/filter.txt', true);
$keyword=$file;
$str="This is a test1 and test2 and test3";
$keyword = implode('|',explode(' ',preg_quote($keyword)));
$str = preg_replace("/($keyword)/i","<b>$0</b>",$str);
echo $str;
?>
任何人?