You appear to be a bot. Output may be restricted
Description
Parses an HTTP message into an associative array.
The array contains the "start-line" key containing the start line of the message, "headers" key containing an associative array of header array values, and a "body" key containing the body of the message.
Usage
$array = _parse_message( $message );
Parameters
- $message
- ( string ) required – HTTP request or response to parse.
Returns
array
Source
File name: wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src/functions.php
Lines:
1 to 5 of 5
function _parse_message($message) { return \YoastSEO_Vendor\GuzzleHttp\Psr7\Message::parseMessage($message); }