發現這個功能來突出顯示搜索字符串的關鍵詞在線程highlight multiple keywords in search突出顯示搜索多個關鍵字(非英文字符)
function highlight($text, $words) {
preg_match_all('~\w+~', $words, $m);
if(!$m)
return $text;
$re = '~\\b(' . implode('|', $m[0]) . ')\\b~i';
return preg_replace($re, '<b>$0</b>', $text);
}
但它並不適用於非英語字符的工作,我該怎麼調整它與例如åäöô等
我有完全相同的問題。我可以解決它感謝這個問題和自己[回答](http://stackoverflow.com/a/30260166/1883256)。 – Pathros