PHP高亮关键词

清华大佬耗费三个月吐血整理的几百G的资源,免费分享!....>>>

对指定的关键词进行替换处理,在html页面上高亮显示

function highlight($sString, $aWords) { 
if (!is_array ($aWords) || empty ($aWords) || !is_string ($sString)) { 
return false; 
} 
$sWords = implode ('|', $aWords); 
return preg_replace ('@\b('.$sWords.')\b@si', '<strong style="background-color:yellow">$1</strong>', $sString); 
}