WP_HTTP_Response::__construct
Constructor.
Method of the class: WP_HTTP_Response{}
No Hooks.
Returns
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() WP HTTP Response:: construct code WP 6.9.1
public function __construct( $data = null, $status = 200, $headers = array() ) {
$this->set_data( $data );
$this->set_status( $status );
$this->set_headers( $headers );
}