fork download
  1. <?php
  2.  
  3. $i = 5;
  4. $i += ++$i + $i++;
  5. echo $i;
  6.  
  7.  
  8. ?>
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
19