WP_REST_Request::get_headers()publicWP 4.4.0

Retrieves all headers from the request.

Method of the class: WP_REST_Request{}

No Hooks.

Return

Array. Map of key to value. Key is always lowercase, as per HTTP specification.

Usage

$WP_REST_Request = new WP_REST_Request();
$WP_REST_Request->get_headers();

Changelog

Since 4.4.0 Introduced.

WP_REST_Request::get_headers() code WP 6.5.2

public function get_headers() {
	return $this->headers;
}