I have the following code:
ignore_user_abort(true); while(!connection_aborted()) { // do stuff }
and according to the PHP documentation
misfortune enough, I have output_buffering=Off and anyway, my while loop continues running and connection_aborted() gives 0 even though the client closed the browser. Any other tips?