fork download
  1. <?php
  2.  
  3. $find_number = '3';
  4. $string_to_search = '1,3,124,12';
  5. if (in_array($find_number, explode(",", $string_to_search))) {
  6. echo "match!";
  7. }
  8.  
Success #stdin #stdout 0.01s 52488KB
stdin
Standard input is empty
stdout
match!