fork(3) download
  1. <?php
  2. while($f = fgets(STDIN)){
  3. var_dump($f);
  4. }
  5. ?>
Success #stdin #stdout 0.01s 20520KB
stdin
one
two


three
stdout
string(4) "one
"
string(4) "two
"
string(1) "
"
string(1) "
"
string(6) "three
"