fork download
  1. <?php
  2. $i=5;
  3. $j=8;
  4. echo "Value of i, j is:", $i," ",$j;
  5. $i+=$j;
  6. $j=$i-$j;
  7. $i++;
  8. echo "Value of i, j is:", $i," ",$j;
  9. ?>
Success #stdin #stdout 0.03s 25284KB
stdin
Standard input is empty
stdout
Value of i, j is:5 8Value of i, j is:14 5