[PHP] FFlush

2002-05-24 Thread DrouetL
Hi, I was wondering if anyone has already used this function (FFlush). If yes, do you have some example to show to me ? Regards Laurent Drouet -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] fflush() function

2001-04-20 Thread Yasuo Ohgaki
It will do the same thing as standard C lib. How about take a look at C reference? Basically, all output is buffered by OS. It's just tells write to file if data, associated with the file pointer/descriptor, is in buffer. You will see why this function is useful, if you 'tail -f' while writing