Web::Development::PHP:: How to highlight matching words
$string = "one two three four"; $result = preg_replace("/(one)|(two)/","
\0
",$string); print $result;