rest_sanitize_boolean
函数
rest_sanitize_boolean ( $value )
- 参数
-
-
(bool|string|int)
$value
The value being evaluated.- Required: 是
-
(bool|string|int)
- 返回值
-
- (bool) Returns the proper associated boolean value.
- 定义位置
-
-
wp-includes/rest-api.php
, line 1432
-
wp-includes/rest-api.php
- 引入
- 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; }
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。