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



rest_sanitize_boolean › WordPress Function

Since4.7.0
Deprecatedn/a
rest_sanitize_boolean ( $value )
Parameters:
  • (bool|string|int) $value The value being evaluated.
    Required: Yes
Returns:
  • (bool) Returns the proper associated boolean value.
Defined at:
Codex:

Changes a boolean-like value into the proper boolean value.



Source

function rest_sanitize_boolean( $value ) {
	// String values are translated to `true`; make sure 'false' is false.
	if ( is_string( $value ) ) {
		$value = strtolower( $value );
		if ( in_array( $value, array( 'false', '0' ), true ) ) {
			$value = false;
		}
	}

	// Everything else will map nicely to boolean.
	return (bool) $value;
}