fork(1) download
  1. <?php
  2. $a=10;
  3. $a += $a++ + ++$a;
  4. echo $a;
  5. // your code goes here
Success #stdin #stdout 0.02s 24448KB
stdin
Standard input is empty
stdout
34