WP_HTTP_Response::jsonSerialize()publicWP 4.4.0

Retrieves the response data for JSON serialization.

It is expected that in most implementations, this will return the same as get_data(), however this may be different if you want to do custom JSON data handling.

Method of the class: WP_HTTP_Response{}

No Hooks.

Return

Mixed. Any JSON-serializable value.

Usage

$WP_HTTP_Response = new WP_HTTP_Response();
$WP_HTTP_Response->jsonSerialize();

Changelog

Since 4.4.0 Introduced.

WP_HTTP_Response::jsonSerialize() code WP 6.5.2

public function jsonSerialize() { // phpcs:ignore WordPress.NamingConventions.ValidFunctionName.MethodNameInvalid
	return $this->get_data();
}