wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_remote_get › WordPress Function

Seit2.7.0
Veraltetn/v
wp_remote_get ( $url, $args = array() )
Parameter: (2)
  • (string) $url URL to retrieve.
    Erforderlich: Ja
  • (array) $args Optional. Request arguments. Default empty array. See WP_Http::request() for information on accepted arguments.
    Erforderlich: Nein
    Standard: array()
Siehe:
Gibt zurück:
  • (array|WP_Error) The response or WP_Error on failure. See WP_Http::request() for information on return value.
Definiert in:
Codex:

Performs an HTTP request using the GET method and returns its response.

Important: If the URL is user-controlled, use wp_safe_remote_get() instead.


Quellcode

function wp_remote_get( $url, $args = array() ) {
	$http = _wp_http_get_object();
	return $http->get( $url, $args );
}