fork(2) download
  1. <?php
  2. $fthi = array("1", "2", "3", "4", "5", "6", "8", "15", "25", "40");
  3. if (in_array("25", $fthi)) {
  4. echo "25 está presente";
  5. }
  6. if (in_array("35", $fthi)) {
  7. echo "35 está presente";
  8. }
Success #stdin #stdout 0.02s 52480KB
stdin
Standard input is empty
stdout
25 está presente