function mime_header_decode

Decodes MIME/HTTP encoded header values.

Parameters

$header: The header to decode.

Return value

string The mime-decoded header.

See also

mime_header_encode()

\Drupal\Component\Utility\Unicode::mimeHeaderDecode().

File

drupal/core/includes/unicode.inc, line 225
Provides Unicode-related conversions and operations.

Code

function mime_header_decode($header) {
  return Unicode::mimeHeaderDecode($header);
}