[ Index ] |
PHP Cross Reference of WordPress Trunk (Updated Daily) |
[Source view] [Print] [Project Stats]
HTTP API: WP_HTTP_Response class
File Size: | 154 lines (3 kb) |
Included or required: | 0 times |
Referenced: | 0 times |
Includes or requires: | 0 files |
WP_HTTP_Response:: (9 methods):
__construct()
get_headers()
set_headers()
header()
get_status()
set_status()
get_data()
set_data()
jsonSerialize()
Class: WP_HTTP_Response - X-Ref
Core class used to prepare HTTP responses.__construct( $data = null, $status = 200, $headers = array() X-Ref |
Constructor. param: mixed $data Response data. Default null. param: int $status Optional. HTTP status code. Default 200. param: array $headers Optional. HTTP header map. Default empty array. |
get_headers() X-Ref |
Retrieves headers associated with the response. return: array Map of header name to header value. |
set_headers( $headers ) X-Ref |
Sets all header values. param: array $headers Map of header name to header value. |
header( $key, $value, $replace = true ) X-Ref |
Sets a single HTTP header. param: string $key Header name. param: string $value Header value. param: bool $replace Optional. Whether to replace an existing header of the same name. |
get_status() X-Ref |
Retrieves the HTTP return code for the response. return: int The 3-digit HTTP status code. |
set_status( $code ) X-Ref |
Sets the 3-digit HTTP status code. param: int $code HTTP status. |
get_data() X-Ref |
Retrieves the response data. return: mixed Response data. |
set_data( $data ) X-Ref |
Sets the response data. param: mixed $data Response data. |
jsonSerialize() X-Ref |
Retrieves the response data for JSON serialization. It is expected that in most implementations, this will return the same as get_data(), however this may be different if you want to do custom JSON data handling. return: mixed Any JSON-serializable value. |
Generated : Thu Nov 21 08:20:01 2024 | Cross-referenced by PHPXref |