WP_HTTP_Response::get_headers()publicWP 4.4.0

Retrieves headers associated with the response.

Метод класса: WP_HTTP_Response{}

Хуков нет.

Возвращает

Массив. Map of header name to header value.

Использование

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

Список изменений

С версии 4.4.0 Введена.

Код WP_HTTP_Response::get_headers() WP 6.5.2

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