fork download
  1. <?php
  2.  
  3. function &f(&$y) { // two ref-signs here...
  4. return $y;
  5. }
  6.  
  7. $y = '';
  8. $x = array(
  9. 'a' => 1,
  10. 'b' => 2,
  11. 'c' => &f($y) // ..and one more here
  12. );
  13.  
Runtime error #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
Standard output is empty