Skip to content

Instantly share code, notes, and snippets.

@westonruter
Created August 6, 2024 21:37
Show Gist options
  • Save westonruter/e996bff8e3f7f5269d99e856554856be to your computer and use it in GitHub Desktop.
Save westonruter/e996bff8e3f7f5269d99e856554856be to your computer and use it in GitHub Desktop.
<?php
$values = [];
foreach ( array( 'PHP_OUTPUT_HANDLER_START', 'PHP_OUTPUT_HANDLER_WRITE', 'PHP_OUTPUT_HANDLER_FLUSH', 'PHP_OUTPUT_HANDLER_CLEAN', 'PHP_OUTPUT_HANDLER_FINAL', 'PHP_OUTPUT_HANDLER_END' ) as $constant ) {
if ( constant( $constant ) & $phase ) {
$values[] = $constant;
}
}
error_log( 'Phase: ' . implode( ', ', $values ) );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment