pre_http_send_through_proxy

过滤钩子
apply_filters( 'pre_http_send_through_proxy', null, $uri, $check, $home )
参数
  • (bool|null) $override Whether to send the request through the proxy. Default null.
    Required:
  • (string) $uri URL of the request.
    Required:
  • (array) $check Associative array result of parsing the request URL with `parse_url()`.
    Required:
  • (array) $home Associative array result of parsing the site URL with `parse_url()`.
    Required:
定义位置
相关勾子
pre_get_search_formpre_http_requestakismet_https_request_pre
相关方法
wp_http_supports_http_build_query
引入
3.5.0
弃用
-

pre_http_send_through_proxy – 当”HTTP_PROXY”常量被定义时,这个钩子在HTTP请求通过代理发送之前被调用。开发人员可以使用这个钩子来修改代理服务器的设置。

过滤是否抢先通过代理发送请求。

返回false将绕过代理;返回true将通过代理发送请求。返回null将绕过筛选器。

$result = apply_filters( 'pre_http_send_through_proxy', null, $uri, $check, $home );

常见问题

FAQs
查看更多 >