fork download
  1. <?php
  2.  
  3. $x = 12;
  4. $x+=1; print $x; // 13
  5. print '<br />';
  6. $x-=3;print $x; // 10
  7. print '<br />';
  8. $x*=4;print $x; // 40
Success #stdin #stdout 0.02s 23704KB
stdin
Standard input is empty
stdout
13<br />10<br />40