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將繞過篩選器。

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
$result = apply_filters( 'pre_http_send_through_proxy', null, $uri, $check, $home );
$result = apply_filters( 'pre_http_send_through_proxy', null, $uri, $check, $home );
$result = apply_filters( 'pre_http_send_through_proxy', null, $uri, $check, $home );

常見問題

FAQs
檢視更多 >