PHP Output Control ob_implicit_flush() Function

PHP Output Control Functions : Send content immediately to the browser on every statement which produces output

Definition and Usage

The ob_implicit_flush() function enables or disabled implicit flushing. When enabled, implicit flushing sends output directly to the browser as soon as it is produced so that calls to the flush() function are not needed.

Syntax

ob_implicit_flush(flag);

Parameter Values

Parameter Description
flag When set to 1, implicit flushing is turned on. When set to 0, implicit flushing is turned off.

Technical Details

PHP Version: 4+

❮ PHP Output Control Functions