wp_remote_request
函数
wp_remote_request ( $url, $args = array() )
- 参数
-
-
(string)
$url
URL to retrieve.- Required: 是
-
(array)
$args
Optional. Request arguments. Default empty array.- Required: 否
- Default: array()
-
(string)
- 返回值
-
- (array|WP_Error) { The response array or a WP_Error on failure. @type string[] $headers Array of response headers keyed by their name. @type string $body Response body. @type array $response { Data about the HTTP response. @type int|false $code HTTP response code. @type string|false $message HTTP response message. } @type WP_HTTP_Cookie[] $cookies Array of response cookies. @type WP_HTTP_Requests_Response|null $http_response Raw HTTP response object. }
- 相关
-
- WP_Http::request()
- 定义位置
-
-
wp-includes/http.php
, line 143
-
wp-includes/http.php
- 引入
- 2.7.0
- 弃用
- –
Performs an HTTP request and returns its response.
There are other API functions available which abstract away the HTTP method:
– Default ‘GET’ for wp_remote_get()
– Default ‘POST’ for wp_remote_post()
– Default ‘HEAD’ for wp_remote_head()
function wp_remote_request( $url, $args = array() ) { $http = _wp_http_get_object(); return $http->request( $url, $args ); }
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。