WP_HTTP_Requests_Response::to_array() WordPress Method
The WP_HTTP_Requests_Response::to_array() function is used to convert a WP_HTTP_Requests_Response object to an array.
WP_HTTP_Requests_Response::to_array() #
Converts the object to a WP_Http response array.
Return
(array) WP_Http response array, per WP_Http::request().
Source
File: wp-includes/class-wp-http-requests-response.php
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,
);
}
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
| Version | Description |
|---|---|
| 4.6.0 | Introduced. |