Created
August 6, 2024 21:37
-
-
Save westonruter/e996bff8e3f7f5269d99e856554856be to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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