wpseek.com
Bazujące na WordPress narzędzie wyszukiwania dla deweloperów i twórców motywów.



wp_remote_request › WordPress Function

Od2.7.0
Przestarzałyn/a
wp_remote_request ( $url, $args = array() )
Parametry: (2)
  • (string) $url URL to retrieve.
    Wymagane: Tak
  • (array) $args Optional. Request arguments. Default empty array. See WP_Http::request() for information on accepted arguments.
    Wymagane: Nie
    Domyślny: array()
Zobacz:
  • WP_Http::request()
Powrót:
  • (array|WP_Error) { The response array or a WP_Error on failure. @type string[] $headers Array of response headers keyed by their name. @type string $body Response body. @type array $response { Data about the HTTP response. @type int|false $code HTTP response code. @type string|false $message HTTP response message. } @type WP_HTTP_Cookie[] $cookies Array of response cookies. @type WP_HTTP_Requests_Response|null $http_response Raw HTTP response object. }
Zdefiniowane na:
Codex:

Performs an HTTP request and returns its response.

There are other API functions available which abstract away the HTTP method: - Default 'GET' for wp_remote_get() - Default 'POST' for wp_remote_post() - Default 'HEAD' for wp_remote_head()


Źródło

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