fork download
  1. <?php
  2. $test = array(
  3. 1 => 'hi',
  4. 2 => 12,
  5. 3 => 'sandwich',
  6. 4 => 41,
  7. 'bye' => 61
  8. );
  9.  
  10. var_dump(in_array(12, $test), in_array(4, $test), in_array('bye', $test), in_array('hi', $test));
Success #stdin #stdout 0.02s 13112KB
stdin
Standard input is empty
stdout
bool(true)
bool(false)
bool(false)
bool(true)