Summery Summery
Retrieve the raw response from a safe HTTP request.
Syntax Syntax
Description Description
This function is ideal when the HTTP request is being made to an arbitrary URL. The URL is validated to avoid redirection and request forgery attacks.
Parameters Parameters
- $url
-
(Required) URL to retrieve.
- $args
-
(Optional) Request arguments.
Default value: array()
Return Return
Source Source
File: wp-includes/http.php
$http = _wp_http_get_object(); return $http->request( $url, $args ); } /**
Advertisement
Changelog Changelog
Version | Description |
---|---|
3.6.0 | Introduced. |
See also See also
- wp_remote_request(): For more information on the response array format.
- WP_Http::request(): For default arguments information.