rest_is_boolean( bool|string $maybe_bool )

Determines if a given value is boolean-like.


Description Description


Parameters Parameters

$maybe_bool

(bool|string) (Required) The value being evaluated.


Top ↑

Return Return

(boolean) True if a boolean, otherwise false.


Top ↑

Source Source

File: wp-includes/rest-api.php

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;
}

Top ↑

Changelog Changelog

Changelog
Version Description
4.7.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.