fork(4) download
  1. <?php
  2. if( 2 < 4 ) print "2 e mai mic decat 4 <br />";
  3.  
  4. if( 3 > 1 ) {
  5. print "3 e mai mare ca 1 \n";
  6. print "<br />";
  7. }
  8. ?>
Success #stdin #stdout 0.03s 13064KB
stdin
Standard input is empty
stdout
2 e mai mic decat 4 <br />3 e mai mare ca 1 
<br />