fork download
  1. <?php
  2.  
  3. // your code goes here
  4.  
  5. $text = 'group0';
  6. if (strpos($text, 'group') === false) {
  7. echo 'not found';
  8. } else {
  9. echo 'found';
  10. }
Success #stdin #stdout 0.02s 26068KB
stdin
Standard input is empty
stdout
found