[ Index ] |
PHP Cross Reference of WordPress Trunk (Updated Daily) |
[Source view] [Print] [Project Stats]
HTTP API: WP_HTTP_Requests_Response class
File Size: | 197 lines (4 kb) |
Included or required: | 0 times |
Referenced: | 0 times |
Includes or requires: | 0 files |
WP_HTTP_Requests_Response:: (11 methods):
__construct()
get_response_object()
get_headers()
set_headers()
header()
get_status()
set_status()
get_data()
set_data()
get_cookies()
to_array()
Class: WP_HTTP_Requests_Response - X-Ref
Core wrapper object for a WpOrg\Requests\Response for standardization.__construct( WpOrg\Requests\Response $response, $filename = '' ) X-Ref |
Constructor. param: \WpOrg\Requests\Response $response HTTP response. param: string $filename Optional. File name. Default empty. |
get_response_object() X-Ref |
Retrieves the response object for the request. return: WpOrg\Requests\Response HTTP response. |
get_headers() X-Ref |
Retrieves headers associated with the response. return: \WpOrg\Requests\Utility\CaseInsensitiveDictionary 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: string Response data. |
set_data( $data ) X-Ref |
Sets the response data. param: string $data Response data. |
get_cookies() X-Ref |
Retrieves cookies from the response. return: WP_HTTP_Cookie[] List of cookie objects. |
to_array() X-Ref |
Converts the object to a WP_Http response array. return: array WP_Http response array, per WP_Http::request(). |
Generated : Thu Nov 21 08:20:01 2024 | Cross-referenced by PHPXref |