Predefined Constants
The constants below are always available as part of the PHP core.
-
PHP_OUTPUT_HANDLER_START(integer) -
Indicates that output buffering has begun.
-
PHP_OUTPUT_HANDLER_WRITE(integer) -
Indicates that the output buffer is being flushed, and had data to output.
Available since PHP 5.4.
-
PHP_OUTPUT_HANDLER_FLUSH(integer) -
Indicates that the buffer has been flushed.
Available since PHP 5.4.
-
PHP_OUTPUT_HANDLER_CLEAN(integer) -
Indicates that the output buffer has been cleaned.
Available since PHP 5.4.
-
PHP_OUTPUT_HANDLER_FINAL(integer) -
Indicates that this is the final output buffering operation.
Available since PHP 5.4.
-
PHP_OUTPUT_HANDLER_CONT(integer) -
Indicates that the buffer has been flushed, but output buffering will continue.
As of PHP 5.4, this is an alias for
PHP_OUTPUT_HANDLER_WRITE. -
PHP_OUTPUT_HANDLER_END(integer) -
Indicates that output buffering has ended.
As of PHP 5.4, this is an alias for
PHP_OUTPUT_HANDLER_FINAL.
