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