wpseek.com
WordPress开发者和主题制作者的搜索引擎



rest_parse_request_arg › WordPress Function

Since4.7.0
已弃用n/a
rest_parse_request_arg ( $value, $request, $param )
参数: (3)
  • (mixed) $value
    Required: Yes
  • (WP_REST_Request) $request
    Required: Yes
  • (string) $param
    Required: Yes
返回:
  • (mixed)
定义在:
文档:

Parse a request argument based on details registered to the route.

Runs a validation check and sanitizes the value, primarily to be used via the sanitize_callback arguments in the endpoint args registration.


源码

function rest_parse_request_arg( $value, $request, $param ) {
	$is_valid = rest_validate_request_arg( $value, $request, $param );

	if ( is_wp_error( $is_valid ) ) {
		return $is_valid;
	}

	$value = rest_sanitize_request_arg( $value, $request, $param );

	return $value;
}