Codice PHP:
<?php
$ban 
= array('!''%''-''('')');
 
$text str_replace($ban'_'$text);
 
$text ereg_replace('_+''_'$text);
 
?>