FLUSH
NAME
flush - Flushes(sends) current buffer.
SYNOPSIS
flush();
DESCRIPTION
This function is used to flush(send) current output buffer immediately.
Error recuperation won’t be working after this function.
EXAMPLES
Note: In the followings examples, the _ between the { should be removed to make it work.
{_{
for(i=0;i<100;++i) do
"i="; i; "<br />";
flush();// without the flush(), the program will wait 100 seconds to output ALL the result
sleep(1);
endfor
}}
SEE ALSO
AUTHOR
Written by Pierre Laplante and Caroline Laplante, <laplante@sednove.com>
MODIFICATIONS
1.0 2014-09-09 21:24:14 laplante@sednove.com
Edit