Código PHP:
function doHighlight($srchTerms,$haystack) {
$srchTerms = preg_quote($srchTerms, "/"); // Tambien agregue esto
$needle =str_replace(" ", "|", $srchTerms);
$busca = array("a","e","i","o","u", "ñ", "Ñ");
$reemplaza = array("[aàáâãäåÀÁÂÃÄÅ]", "[eèéêëÈÉÊË]", "[iìíîïÌÍÎÏ]", "[oòóôõöÒÓÔÕÖ]", "[uùúûüÙÚÛÜ]", "[nñÑ]", "[nñÑ]");
$needle = str_replace($busca, $reemplaza, $needle);
$text = preg_replace("/($needle)/i","<span style=\"background:#FFFF9F\">\\0</span>", $haystack);
return $text;
}
Un Saludo y gracias
![Cool](http://static.forosdelweb.com/fdwtheme/images/smilies/cool.png)