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



wp_safe_remote_post › WordPress Function

Od3.6.0
Przestarzałyn/a
wp_safe_remote_post ( $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:
Powrót:
  • (array|WP_Error) The response or WP_Error on failure.
Zdefiniowane na:
Codex:

Retrieve 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 is validated to avoid redirection and request forgery attacks.


Źródło

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