79169047

Date: 2024-11-08 06:49:08
Score: 0.5
Natty:
Report link

If you want to continue with FPM, you need ob_end_clean before first echo but with enough count, so the final status may be like this


<?php

while (ob_get_level()) ob_end_clean();

for ($i = 1; $i <= 10; $i++){

  sleep(1); 
  echo "$i\n";

  ob_flush();
  flush();

}

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Mostafa Norouzi