Skip to content

Instantly share code, notes, and snippets.

@lenivene
Last active September 27, 2019 03:27
Show Gist options
  • Save lenivene/316dc81a4f63f3653a9a83bc578ff46e to your computer and use it in GitHub Desktop.
Save lenivene/316dc81a4f63f3653a9a83bc578ff46e to your computer and use it in GitHub Desktop.
Get boolean false or true in value.
<?php
if( ! defined( 'FILTER_VALIDATE_BOOLEAN' ) ){
define( 'FILTER_VALIDATE_BOOLEAN', 258 );
}
$db_value = 1;
$bool_value = filter_var( $db_value, FILTER_VALIDATE_BOOLEAN );
var_dump( $bool_value );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment