Home  >  Article  >  Backend Development  >  PHP keyword highlighting

PHP keyword highlighting

WBOY
WBOYOriginal
2016-07-25 08:42:431202browse

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


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 admin@php.cn
Previous article:PHP code to read CSV fileNext article:PHP code to read CSV file