Uses
Uses | Description |
---|---|
wp-includes/class-requests.php: Requests::parse_response() | HTTP response parser |
Callback for transport.internal.parse_response
Internal use only. Converts a raw HTTP response to a Requests_Response while still executing a multiple request.
(string) (Required) Full response text including headers and body (will be overwritten with Response instance)
(array) (Required) Request data as passed into Requests::request_multiple()
(null) $response
is either set to a Requests_Response instance, or a Requests_Exception object
File: wp-includes/class-requests.php
public static function parse_multiple(&$response, $request) { try { $url = $request['url']; $headers = $request['headers']; $data = $request['data']; $options = $request['options']; $response = self::parse_response($response, $url, $headers, $data, $options); } catch (Requests_Exception $e) { $response = $e; } }
© 2003–2019 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/classes/requests/parse_multiple