WP_HTTP_Requests_Response::header() WordPress Method

The WP_HTTP_Requests_Response::header() method is used to get the value of a header from the HTTP response.

WP_HTTP_Requests_Response::header( string $key, string $value, bool $replace = true ) #

Sets a single HTTP header.


Parameters

$key

(string)(Required)Header name.

$value

(string)(Required)Header value.

$replace

(bool)(Optional) Whether to replace an existing header of the same name.

Default value: true


Top ↑

Source

File: wp-includes/class-wp-http-requests-response.php

	public function header( $key, $value, $replace = true ) {
		if ( $replace ) {
			unset( $this->response->headers[ $key ] );
		}

		$this->response->headers[ $key ] = $value;
	}

Top ↑

Changelog

Changelog
VersionDescription
4.6.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.