任何帮助都将非常感谢。 如何将此代码用于波斯字符?
function ae_filter_badword($content){
// filter badwords
$filter_word = ae_get_option('filter_keywords');
$filter_keywords = explode(',', $filter_word);
if(!empty($filter_keywords)){
foreach ($filter_keywords as $word) {
if($word){
$partern = '/\b' . trim($word) . '\b/i';
$content = preg_replace($partern, " ***", $content);
}
}
}
return $content;
}
答案 0 :(得分:0)
我找到了答案,只需使用以下代码
$partern = '/\b' . trim($word) . '\b/u';
u表示utf-8