wp_remote_get()
wp_remote_get( string $url, array $args = array() ) 使用G…
wp_remote_get( string $url, array $args = array() )
使用GET方法执行HTTP请求并返回其响应。
Performs an HTTP request using the GET method and returns its response.
目录锚点:#说明#参数#源码#笔记
说明(Description)
有关响应数组格式的详细信息,另请参阅wp_remote_request():另请参阅。WP_Http::request():获取默认参数信息。
参数(Parameters)
参数 | 类型 | 说明 |
---|---|---|
$url | (string) | 要检索的URL。 |
$args | (array) | 请求参数。 |
源码(Source)
/** * Retrieve the raw response from the HTTP request using the GET method. * * @since 2.7.0 * * @see wp_remote_request() For more information on the response array format. * @see WP_Http::request() For default arguments information. * * @param string $url Site URL to retrieve. * @param array $args Optional. Request arguments. Default empty array. * @return WP_Error|array The response or WP_Error on failure. */ function wp_remote_get($url, $args = array()) { $http = _wp_http_get_object(); return $http->get( $url, $args ); }
更新版本 | 源码位置 | 使用 | 被使用 |
---|---|---|---|
2.7.0 | wp-includes/http.php | 4 | 20 |
笔记(Notes)
在类中可以找到第二个参数的有效参数-http.php在标题中。在本指南的当前版本中,没有简单的方法来引用这个列表,所以我将PHPDoc头粘贴在这里。希望docs站点能够扩展WP_Http页面,或者在机器人构建这些页面时,找到一种通过间接引用有效参数的方法。
类别:WordPress 函数手册、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
还没有任何评论,赶紧来占个楼吧!