Home  >  Article  >  Backend Development  >  php正则加亮关键字函数方法

php正则加亮关键字函数方法

WBOY
WBOYOriginal
2016-06-20 13:00:37869browse

php正则加亮关键字函数方法
正则加亮关键字

function highlight_words($str, $words, $color = '#FFFF00') { 
if(is_array($words)) { 
   foreach($words as $k => $word) { 
     $pattern[$k] = "/\b($word)\b/is"; 
     $replace[$k] = '\\1'; 
   } 
} 
else { 
   $pattern = "/\b($words)\b/is"; 
   $replace = '\\1'; 
} 
  
return preg_replace($pattern,$replace,$str); 
}  

 


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact [email protected]