BadWords und WeristOnline
Verfasst: 06.05.2006 13:49
Wie kann ich ne Varable mit den BadWords checken?
und wie kann ich eine Seite bei Wer ist Online "registrieren"?
und wie kann ich eine Seite bei Wer ist Online "registrieren"?
phpBB.de - Die deutsche phpBB-Community
https://www.phpbb.de/community/
Code: Alles auswählen
//
// Define censored word matches
//
$orig_word = array();
$replacement_word = array();
obtain_word_list($orig_word, $replacement_word);
//
// Censor topic title
//
if ( count($orig_word) )
{
$variable = preg_replace($orig_word, $replacement_word, $variable);
}