fork download
  1. <?php
  2.  
  3.  
  4. $first = "second";
  5. $second = "third";
  6. print $first;
  7.  
  8. echo "\n";
  9.  
  10. print $$first;
Success #stdin #stdout 0.02s 24400KB
stdin
Standard input is empty
stdout
second
third