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

WBOY
Release: 2016-06-20 13:00:37
Original
861 people have browsed it

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); 
}  
Copy after login

 


Related labels:
php
source:php.cn
Statement of this Website
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]
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!