wp_remote_get

函数
wp_remote_get ( $url, $args = array() )
参数
  • (string) $url URL to retrieve.
    Required:
  • (array) $args Optional. Request arguments. Default empty array.
    Required:
    Default: array()
返回值
  • (array|WP_Error) The response or WP_Error on failure.
相关
  • wp_remote_request()
  • WP_Http::request()
定义位置
相关方法
wp_safe_remote_getwp_remote_postwp_remote_headwp_remote_requestwp_remote_fopen
引入
2.7.0
弃用
-

wp_remote_get: 这个函数用来通过HTTP GET检索一个远程文件的内容。它接受一个单一的参数:远程文件的URL。

使用GET方法执行一个HTTP请求并返回其响应。

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

常见问题

FAQs
查看更多 >