function _openid_parse_message

7.x openid.inc _openid_parse_message($message)
6.x openid.inc _openid_parse_message($message)

Convert a direct communication message into an associative array.

2 calls to _openid_parse_message()
openid_association in drupal-7.x/modules/openid/openid.module
Attempt to create a shared secret with the OpenID Provider.
openid_verify_assertion in drupal-7.x/modules/openid/openid.module
Attempt to verify the response received from the OpenID Provider.

File

drupal-7.x/modules/openid/openid.inc, line 366
OpenID utility functions.

Code

function _openid_parse_message($message) {
  $parsed_message = array();

  $items = explode("\n", $message);
  foreach ($items as $item) {
    $parts = explode(':', $item, 2);

    if (count($parts) == 2) {
      $parsed_message[$parts[0]] = $parts[1];
    }
  }

  return $parsed_message;
}