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