fork(2) download
  1.  
  2. <?php
  3.  
  4. $a=24;
  5. $b="the number is 25";
  6. $c="i love PHP";
  7. if ($a==25)
  8. echo $b;
  9. else if ($a!=25)
  10. echo $c
  11. ?>
  12.  
  13.  
  14.  
Success #stdin #stdout 0.03s 26020KB
stdin
Standard input is empty
stdout
i love PHP