Blame | Letzte Änderung | Log anzeigen | RSS feed
<?phpfunction rcc($string) {$stop = 31;$newString = NULL;for ( $i=0; $i<strlen($string); $i++ ) {if ( (ord($string{$i}) <= $stop ) === FALSE) {$newString .= $string{$i};}}return $newString;}?>