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: |
|
Returns: |
|
Defined at: |
|
Codex: |
Changes a boolean-like value into the proper boolean value.
Related Functions: rest_sanitize_object, rest_is_boolean, rest_sanitize_array, rest_sanitize_request_arg, sanitize_bookmark
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;
}