wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



wp_safe_remote_request › WordPress Function

Da3.6.0
Deprecaton/a
wp_safe_remote_request ( $url, $args = array() )
Parametri: (2)
  • (string) $url URL to retrieve.
    Richiesto:
  • (array) $args Optional. Request arguments. Default empty array. See WP_Http::request() for information on accepted arguments.
    Richiesto: No
    Default: array()
Vedi:
Ritorna:
  • (array|WP_Error) The response or WP_Error on failure.
Definito a:
Codex:

Retrieve the raw response from a safe HTTP request.

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.


Sorgenti

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