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