fork download
  1. <?php
  2.  
  3. $matches = "antarctica";
  4. $query = "arctic";
  5.  
  6. echo strstr($matches, $query) ? "match" : "no match";
  7.  
  8. ?>
Success #stdin #stdout 0.02s 13064KB
stdin
Standard input is empty
stdout
match