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