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