WordPress\AiClientDependencies\Psr\Http\Message

MessageInterface::getHeaderpublicWP 1.0

Retrieves a message header value by the given case-insensitive name.

This method returns an array of all the header values of the given case-insensitive header name.

If the header does not appear in the message, this method MUST return an empty array.

Method of the class: MessageInterface{}

No Hooks.

Returns

String[]. An array of string values as provided for the given

header. If the header does not appear in the message, this method MUST
return an empty array.

Usage

$MessageInterface = new MessageInterface();
$MessageInterface->getHeader( $name ): array;
$name(string) (required)
Case-insensitive header field name.

MessageInterface::getHeader() code WP 7.0

public function getHeader(string $name): array;