wpseek.com
A WordPress-centric search engine for devs and theme authors



rest_is_boolean › WordPress Function

Since4.7.0
Deprecatedn/a
rest_is_boolean ( $maybe_bool )
Parameters:
  • (bool|string) $maybe_bool The value being evaluated.
    Required: Yes
Returns:
  • (bool) True if a boolean, otherwise false.
Defined at:
Codex:

Determines if a given value is boolean-like.



Source

function rest_is_boolean( $maybe_bool ) {
	if ( is_bool( $maybe_bool ) ) {
		return true;
	}

	if ( is_string( $maybe_bool ) ) {
		$maybe_bool = strtolower( $maybe_bool );

		$valid_boolean_values = array(
			'false',
			'true',
			'0',
			'1',
		);

		return in_array( $maybe_bool, $valid_boolean_values, true );
	}

	if ( is_int( $maybe_bool ) ) {
		return in_array( $maybe_bool, array( 0, 1 ), true );
	}

	return false;
}