Hoi,
Ik heb een script gemaakt om er voor te zorgen dat als iemand scheld dat dat woord word verwijderd en dat ik een melding krijg. Ik heb nu dit script:
<?php
$words = array('yolo', 'scheld');
$found = array();
foreach($words AS $word) {
$_GET['r'] = strtolower($_GET['r']);
$_GET['r'] = str_replace('.', '', $_GET['r']);
$_GET['r'] = str_replace('-', '', $_GET['r']);
$_GET['r'] = str_replace('<', '', $_GET['r']);
$_GET['r'] = str_replace('>', '', $_GET['r']);
$_GET['r'] = str_replace(',', '', $_GET['r']);
$_GET['r'] = str_replace('_', '', $_GET['r']);
$_GET['r'] = str_replace('+', '', $_GET['r']);
$_GET['r'] = str_replace('/', '', $_GET['r']);
$_GET['r'] = str_replace('\\', '', $_GET['r']);
$_GET['r'] = str_replace('!', '', $_GET['r']);
$_GET['r'] = str_replace('@', '', $_GET['r']);
$_GET['r'] = str_replace('#', '', $_GET['r']);
$_GET['r'] = str_replace('$', '', $_GET['r']);
$_GET['r'] = str_replace('%', '', $_GET['r']);
$_GET['r'] = str_replace('^', '', $_GET['r']);
$_GET['r'] = str_replace('&', '', $_GET['r']);
$_GET['r'] = str_replace('*', '', $_GET['r']);
$_GET['r'] = str_replace('(', '', $_GET['r']);
$_GET['r'] = str_replace(')', '', $_GET['r']);
$_GET['r'] = str_replace('?', '', $_GET['r']);
$_GET['r'] = str_replace('~', '', $_GET['r']);
$_GET['r'] = str_replace('`', '', $_GET['r']);
$_GET['r'] = str_replace('{', '', $_GET['r']);
$_GET['r'] = str_replace('}', '', $_GET['r']);
$_GET['r'] = str_replace('[', '', $_GET['r']);
$_GET['r'] = str_replace(']', '', $_GET['r']);
$_GET['r'] = str_replace(':', '', $_GET['r']);
$_GET['r'] = str_replace(';', '', $_GET['r']);
$_GET['r'] = str_replace('¨', '', $_GET['r']);
$_GET['r'] = str_replace('¨', '', $_GET['r']);
$_GET['r'] = str_replace('^', '', $_GET['r']);
echo $_GET['r'].'<br>';
$find = strpos($word, $_GET['r']);
if($find === true) {
$found[] = $word;
}
//unset($find);
}
if(count($found) != 0) {
echo 'ja';
} else {
echo 'nee';
}
?>
Als de GET Waarde R nu bijvoorbeeld 'yolo' is zegt het script nee, terwijl yolo wel gewoon in de array staat. Hoe kan ik dit oplossen?
1.640 views