fork(1) download
  1. <?php
  2. $variable1=57;
  3. $variable2=$variable1*2;
  4. echo "$variable1\n";
  5. echo $variable2;
  6. ?>
Success #stdin #stdout 0.01s 20568KB
stdin
Standard input is empty
stdout
    57
114