ob_implicit_flush
Description
The ob_implicit_flush of Output Control for PHP turns implicit flush on/off.
Syntax
ob_implicit_flush(
bool $enable = true
): voidParameters
enable
true to turn implicit flushing on, false otherwise.
Return
No value is returned.
Examples
1 · void
<?
ob_start();
ob_implicit_flush();
for($i = 1; $i <= 3; ++$i)
{
echo str_pad("output$i", 1024*1024);
ob_flush();
sleep(1);
}
output1 output2 output3