fork download
  1. <?php
  2. $comment="James junexyz";
  3. $BadWords = array("James", "June", "Jane");
  4. foreach($BadWords as $k=>$v){
  5. $pos = stripos($comment,$v);
  6. if($pos!==false){
  7. echo $v. ' is not allowed ';
  8. }
  9. }
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
James is not allowed June is not allowed