function highlightWords($text, $word){ $text = preg_replace('#'. preg_quote($word) .'#i', '<span style="background-color: #F9F902;"></span>', $text); return $text; } //function calling highlightWords($desc, $search_word);