WP_REST_Server::send_header( string $key, string $value )

In this article

Sends an HTTP header.

Parameters

$keystringrequired
Header key.
$valuestringrequired
Header value.

Source

public function send_header( $key, $value ) {
	/*
	 * Sanitize as per RFC2616 (Section 4.2):
	 *
	 * Any LWS that occurs between field-content MAY be replaced with a
	 * single SP before interpreting the field value or forwarding the
	 * message downstream.
	 */
	$value = preg_replace( '/\s+/', ' ', $value );
	header( sprintf( '%s: %s', $key, $value ) );
}

Changelog

VersionDescription
4.4.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.