fork download
  1. <?php
  2. $x=1;
  3. if($x--){
  4. echo $x--;
  5. } else {
  6. echo $x++;
  7. }
  8. ?>
  9.  
Success #stdin #stdout 0.02s 25736KB
stdin
Standard input is empty
stdout
Standard output is empty