fork download
  1. <?php
  2. = array(1=>10, 20, 30);
  3. $b = &[1];
  4. [1] = [2];
  5. [1] = &[3];
  6. echo $b;
  7. ?>
Success #stdin #stdout 0.03s 13112KB
stdin
Standard input is empty
stdout
20