wp_safe_remote_post()WP 3.6.0

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).

Хуков нет.

Возвращает

Массив|WP_Error. The response or WP_Error on failure. See WP_Http::request() for information on return value.

Использование

wp_safe_remote_post( $url, $args );
$url(строка) (обязательный)
URL to retrieve.
$args(массив)
Request arguments. See WP_Http::request() for information on accepted arguments.
По умолчанию: empty array

Заметки

Список изменений

С версии 3.6.0 Введена.

Код wp_safe_remote_post() WP 6.7.2

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