fork download
  1. <?php
  2.  
  3. ob_start(function($c) {return "PASS\n";});
  4. echo "FAIL\n";
  5. echo $c;
  6.  
Success #stdin #stdout 0.02s 24448KB
stdin
Standard input is empty
stdout
PASS
FAIL