I want to send 'eof' kind of message after some processes. Die or exit
cannot be used because there are some more processes to complete, but
nothing major to users.
<?php
phpinfo ();
//i want to finish the process here!!
//flush () //? doesnt work?
sleep (10); // mimic of (not)complicated process
?