rest_sanitize_boolean

函数


rest_sanitize_boolean ( $value )
参数
  • (bool|string|int)
    $value
    The value being evaluated.
    Required:
返回值
  • (bool) Returns the proper associated boolean value.
定义位置
  • wp-includes/rest-api.php
    , line 1432
引入
4.7.0
弃用

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

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