当前位置:Gxlcms > PHP教程 > PHP关键词高亮

PHP关键词高亮

时间:2021-07-01 10:21:17 帮助过:5人阅读

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

  1. function highlight($sString, $aWords) {
  2. if (!is_array ($aWords) || empty ($aWords) || !is_string ($sString)) {
  3. return false;
  4. }
  5. $sWords = implode ('|', $aWords);
  6. return preg_replace ('@\b('.$sWords.')\b@si', '$1', $sString);
  7. }

PHP

人气教程排行