PHP keyword highlighting

WBOY
Release: 2016-07-25 08:42:43
Original
1216 people have browsed it

Replace the specified keywords and highlight them on the html page

  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', '< ;strong style="background-color:yellow">$1', $sString);
  7. }
Copy code

PHP


Related labels:
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 admin@php.cn
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!