fork download
  1. <?php
  2.  
  3. $a = 'bar';
  4. $b = &$a;
  5. $a = 'baz';
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
string(3) "baz"