wpseek.com
WordPress开发者和主题制作者的搜索引擎



wp_safe_remote_request › WordPress Function

Since3.6.0
已弃用n/a
wp_safe_remote_request ( $url, $args = array() )
参数: (2)
  • (string) $url URL to retrieve.
    Required: Yes
  • (array) $args Optional. Request arguments. Default empty array. See WP_Http::request() for information on accepted arguments.
    Required: No
    默认: array()
查看:
返回:
  • (array|WP_Error) The response or WP_Error on failure.
定义在:
文档:

Retrieve the raw response from a safe HTTP request.

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.


源码

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