WP_Http::get() WordPress Method
The WP_Http::get() method is a WordPress HTTP API method used to perform a GET request. It takes two parameters: an URL and an array of headers. The method returns an instance of WP_Error on failure or an array containing the response body on success.
WP_Http::get( string $url, string|array $args = array() ) #
Uses the GET HTTP method.
Description
Used for sending data that is expected to be in the body.
Parameters
- $url
(string)(Required)The request URL.
- $args
(string|array)(Optional) Override the defaults.
Default value: array()
Return
(array|WP_Error) Array containing 'headers', 'body', 'response', 'cookies', 'filename'. A WP_Error instance upon error.
Source
File: wp-includes/class-wp-http.php
public function get( $url, $args = array() ) { $defaults = array( 'method' => 'GET' ); $parsed_args = wp_parse_args( $args, $defaults ); return $this->request( $url, $parsed_args ); }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
2.7.0 | Introduced. |