fork download
  1. <?php
  2.  
  3. $q1 = 1;
  4. $q2 = 2;
  5. $q3 = 3;
  6. $q4 = 4;
  7. $q5 = 5;
  8.  
  9. for($i=1; $i<=5; $i++)
  10. {
  11. $x = "q$i";
  12. echo $$x;
  13. }
  14.  
Success #stdin #stdout 0.01s 20520KB
stdin
Standard input is empty
stdout
12345