WP_HTTP_Response::__construct( mixed $data = null, int $status = 200, array $headers = array() )

Constructor.


Description Description


Parameters Parameters

$data

(mixed) (Optional) Response data.

Default value: null

$status

(int) (Optional) HTTP status code.

Default value: 200

$headers

(array) (Optional) HTTP header map.

Default value: array()


Top ↑

Source Source

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

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

Top ↑

Changelog Changelog

Changelog
Version Description
4.4.0 Introduced.


Top ↑

User Contributed Notes User Contributed Notes

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