WP_HTTP_Response::__construct()publicWP 4.4.0

Constructor.

Method of the class: WP_HTTP_Response{}

No Hooks.

Return

null. Nothing (null).

Usage

$WP_HTTP_Response = new WP_HTTP_Response();
$WP_HTTP_Response->__construct( $data, $status, $headers );
$data(mixed)
Response data.
Default: null
$status(int)
HTTP status code.
Default: 200
$headers(array)
HTTP header map.
Default: empty array

Changelog

Since 4.4.0 Introduced.

WP_HTTP_Response::__construct() code WP 6.5.2

public function __construct( $data = null, $status = 200, $headers = array() ) {
	$this->set_data( $data );
	$this->set_status( $status );
	$this->set_headers( $headers );
}