fork download
  1. <?php
  2.  
  3. function an_array()
  4. {
  5. return array('foo','bar');
  6. }
  7.  
  8. echo an_array()[0]; // oops!
  9. ?>
Success #stdin #stdout 0.01s 20520KB
stdin
Standard input is empty
stdout
foo