wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



rest_sanitize_boolean › WordPress Function

Da4.7.0
Deprecaton/a
rest_sanitize_boolean ( $value )
Parametri:
  • (bool|string|int) $value The value being evaluated.
    Richiesto:
Ritorna:
  • (bool) Returns the proper associated boolean value.
Definito a:
Codex:

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



Sorgenti

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