fork(6) download
  1. <?php
  2.  
  3. $arr = [
  4. 'id' => 1,
  5. 'descr' => 'Молоко',
  6. 'price' => 15,
  7. ];
  8.  
  9. echo $arr[array_keys($arr)[1]];
  10.  
Success #stdin #stdout 0s 82880KB
stdin
Standard input is empty
stdout
Молоко