function antimat($text)
{
$mat=array('зараза','гамнюк');
$cm=count($mat);
for($i=0; $i<=$cm; $i++)
{
$checkmat = @strstr("$text", "$mat[$i]");
if($checkmat)
{
$text=str_replace("$mat[$i]",'<font color="red">В тексте мат</font>',$text);
}}
return $text;
}
$text=antimat($text);