Skip to content

Instantly share code, notes, and snippets.

@LasseRafn
Last active June 16, 2021 10:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save LasseRafn/68d96e574148996c03cb535ff5d93bc1 to your computer and use it in GitHub Desktop.
Save LasseRafn/68d96e574148996c03cb535ff5d93bc1 to your computer and use it in GitHub Desktop.
<?php
if ( ! function_exists( 'bool' ) ) {
function bool( $value, $default = false ): bool {
return filter_var( $value ?? $default, FILTER_VALIDATE_BOOLEAN );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment