Parsed: 121016
<?php /** * Core HTTP Request API * * Standardizes the HTTP requests for WordPress. Handles cookies, gzip encoding and decoding, chunk * decoding, if HTTP 1.1 and various other difficult HTTP protocol implementations. * * @package WordPress * @subpackage HTTP */ /* function _wp_http_get_object() – Returns the initialized WP_Http Object */ /* function wp_safe_remote_request() – Retrieve the raw response from a safe HTTP request. */ /* function wp_safe_remote_get() – Retrieve the raw response from a safe HTTP request using the GET method. */ /* function wp_safe_remote_post() – Retrieve the raw response from a safe HTTP request using the POST method. */ /* function wp_safe_remote_head() – Retrieve the raw response from a safe HTTP request using the HEAD method. */ /* function wp_remote_request() – Performs an HTTP request and returns its response. */ /* function wp_remote_get() – Performs an HTTP request using the GET method and returns its response. */ /* function wp_remote_post() – Performs an HTTP request using the POST method and returns its response. */ /* function wp_remote_head() – Performs an HTTP request using the HEAD method and returns its response. */ /* function wp_remote_retrieve_headers() – Retrieve only the headers from the raw response. */ /* function wp_remote_retrieve_header() – Retrieve a single header by name from the raw response. */ /* function wp_remote_retrieve_response_code() – Retrieve only the response code from the raw response. */ /* function wp_remote_retrieve_response_message() – Retrieve only the response message from the raw response. */ /* function wp_remote_retrieve_body() – Retrieve only the body from the raw response. */ /* function wp_remote_retrieve_cookies() – Retrieve only the cookies from the raw response. */ /* function wp_remote_retrieve_cookie() – Retrieve a single cookie by name from the raw response. */ /* function wp_remote_retrieve_cookie_value() – Retrieve a single cookie’s value by name from the raw response. */ /* function wp_http_supports() – Determines if there is an HTTP Transport that can process this request. */ /* function get_http_origin() – Get the HTTP Origin of the current request. */ /* function get_allowed_http_origins() – Retrieve list of allowed HTTP origins. */ /* function is_allowed_http_origin() – Determines if the HTTP origin is an authorized one. */ /* function send_origin_headers() – Send Access-Control-Allow-Origin and related headers if the current request is from an allowed origin. */ /* function wp_http_validate_url() – Validate a URL for safe use in the HTTP API. */ /* function allowed_http_request_hosts() – Whitelists allowed redirect hosts for safe HTTP requests as well. */ /* function ms_allowed_http_request_hosts() – Whitelists any domain in a multisite installation for safe HTTP requests. */ /* function wp_parse_url() – A wrapper for PHP’s parse_url() function that handles consistency in the return values across PHP versions. */ /* function _get_component_from_parsed_url_array() – Retrieve a specific component from a parsed URL array. */ /* function _wp_translate_php_url_constant_to_key() – Translate a PHP_URL_* constant to the named array keys PHP uses. */