WP_HTTP_Requests_Response::to_array()
Converts the object to a WP_Http response array.
Method of the class: WP_HTTP_Requests_Response{}
No Hooks.
Return
Array
. WP_Http response array, per WP_Http::request().
Usage
$WP_HTTP_Requests_Response = new WP_HTTP_Requests_Response(); $WP_HTTP_Requests_Response->to_array();
Changelog
Since 4.6.0 | Introduced. |
WP_HTTP_Requests_Response::to_array() WP HTTP Requests Response::to array code WP 6.7.2
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, ); }