fork download
  1. <?php
  2.  
  3. // your code goes here
  4. $a = ['12345','b'];
  5. $box_load_index = array_search('12345', $a, true);
  6. var_dump($box_load_index);
  7. if ($box_load_index !== false) {
  8. echo 'do stuff';
  9. } else {
  10. echo 'do stuff iffere';
  11. }
Success #stdin #stdout 0.02s 24108KB
stdin
Standard input is empty
stdout
int(0)
do stuff