Dup Ver Goto 📝

CloseConnectionEarly

PT2/lang/php/http does not exist
To
18 lines, 52 words, 480 chars Page 'CloseConnectionEarly' does not exist.

See this stackoverflow question

<?php
ob_end_clean();
header("Connection: close");
ignore_user_abort(true); // just to be safe
ob_start();
echo('Text the user will see');
$size = ob_get_length();
header("Content-Length: $size");
ob_end_flush(); // Strange behaviour, will not work
flush(); // Unless both are called !
// Do processing here 
sleep(30);
echo('Text user will never see');
?>