WPINC_http.php Notes - WordPress-Thinstall/wordpress-develop GitHub Wiki

interface AppHttpRequestInterface {
    function _wp_http_get_object();
    function wp_safe_remote_request( $url, $args = array() );
    function wp_safe_remote_get( $url, $args = array() );
    function wp_safe_remote_post( $url, $args = array() );
    function wp_safe_remote_head( $url, $args = array() );
    function wp_remote_request($url, $args = array());
    function wp_remote_get($url, $args = array());
    function wp_remote_post($url, $args = array());
    function wp_remote_head($url, $args = array());
    function wp_remote_retrieve_headers( $response );
    function wp_remote_retrieve_header( $response, $header );
    function wp_remote_retrieve_response_code( $response );
    function wp_remote_retrieve_response_message( $response );
    function wp_remote_retrieve_body( $response );
    function wp_remote_retrieve_cookies( $response );
    function wp_remote_retrieve_cookie( $response, $name );
    function wp_remote_retrieve_cookie_value( $response, $name );
    function wp_http_supports( $capabilities = array(), $url = null );
    function get_http_origin();
    function get_allowed_http_origins();
    function is_allowed_http_origin( $origin = null );
    function send_origin_headers();
    function wp_http_validate_url( $url );
    function allowed_http_request_hosts( $is_external, $host );
    function ms_allowed_http_request_hosts( $is_external, $host );
    function wp_parse_url( $url, $component = -1 );
    function _get_component_from_parsed_url_array( $url_parts, $component = -1 );
    function _wp_translate_php_url_constant_to_key( $constant );
}