Skip to content

Instantly share code, notes, and snippets.

@sdiama
Last active May 19, 2020 10:07
Show Gist options
  • Save sdiama/dea8263d443e12442028177e06702630 to your computer and use it in GitHub Desktop.
Save sdiama/dea8263d443e12442028177e06702630 to your computer and use it in GitHub Desktop.
HighLight Specific Words in a Phrase
function highlight($sString, $aWords) {
if (!is_array ($aWords) || empty ($aWords) || !is_string ($sString)) {
return false;
}
$sWords = implode ('|', $aWords);
return preg_replace ('@\b('.$sWords.')\b@si', '<strong style="background-color:yellow">$1</strong>', $sString);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment