wpseek.com
A WordPress-centric search engine for devs and theme authors



wp_safe_remote_get › WordPress Function

Since3.6.0
Deprecatedn/a
wp_safe_remote_get ( $url, $args = array() )
Parameters: (2)
  • (string) $url URL to retrieve.
    Required: Yes
  • (array) $args Optional. Request arguments. Default empty array. See WP_Http::request() for information on accepted arguments.
    Required: No
    Default: array()
Links:
See:
Returns:
  • (array|WP_Error) The response or WP_Error on failure.
Defined at:
Codex:

Retrieves the raw response from a safe HTTP request using the GET method.

This function is ideal when the HTTP request is being made to an arbitrary URL. The URL, and every URL it redirects to, are validated with wp_http_validate_url() to avoid Server Side Request Forgery attacks (SSRF).


Source

function wp_safe_remote_get( $url, $args = array() ) {
	$args['reject_unsafe_urls'] = true;
	$http                       = _wp_http_get_object();
	return $http->get( $url, $args );
}