fork download
  1. <?php
  2.  
  3. $arr = [1,2,3,4,5];
  4. print_r($arr);
  5.  
  6. $var = 3;
  7. echo array_search($var, $arr);
Success #stdin #stdout 0.02s 24252KB
stdin
Standard input is empty
stdout
Array
(
    [0] => 1
    [1] => 2
    [2] => 3
    [3] => 4
    [4] => 5
)
2