file-stream.php 358 B

12345678910111213
  1. <?php
  2. $fileStream = fopen(__DIR__ . '/file-stream.txt', 'r');
  3. $input = fopen('php://input', 'r');
  4. while (frankenphp_handle_request(function () use ($fileStream, $input) {
  5. echo fread($fileStream, 5);
  6. // this line will lead to a zend_mm_heap corrupted error if the input stream was destroyed
  7. stream_is_local($input);
  8. })) ;
  9. fclose($fileStream);