WP_HTTP_Requests_Response::to_array(): array

In this article

Converts the object to a WP_Http response array.

Return

array WP_Http response array, per WP_Http::request().

Source

public function to_array() {
	return array(
		'headers'  => $this->get_headers(),
		'body'     => $this->get_data(),
		'response' => array(
			'code'    => $this->get_status(),
			'message' => get_status_header_desc( $this->get_status() ),
		),
		'cookies'  => $this->get_cookies(),
		'filename' => $this->filename,
	);
}

Changelog

VersionDescription
4.6.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.