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



wp_safe_remote_post › WordPress Function

Seit3.6.0
Veraltetn/v
wp_safe_remote_post ( $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()
Links:
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:

Retrieves the raw response from a safe HTTP request using the POST 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).


Quellcode

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