fork download
  1. <?php
  2.  
  3. $String = "asdfghjlzzTESTEzzxcvbnm";
  4.  
  5. if (stripos($String, 'TESTE') !== false) {
  6. echo "Existe";
  7. } else {
  8. echo "Não existe";
  9. }
Success #stdin #stdout 0s 82880KB
stdin
Standard input is empty
stdout
Existe