fork download
  1. <?php
  2.  
  3. $id = '5';
  4. $arr = array(5 => 'foo');
  5.  
  6. var_dump($arr[$id]);
Success #stdin #stdout 0.02s 13112KB
stdin
Standard input is empty
stdout
string(3) "foo"