fork(1) download
  1. <?php
  2.  
  3. $bills = array(
  4. [100, 23],
  5. [500, 5],
  6. [1000, 0],
  7. [5000, 200]
  8. );
  9.  
  10.  
  11.  
  12. var_dump($bills[0][0]);
Success #stdin #stdout 0.01s 82880KB
stdin
Standard input is empty
stdout
int(100)