Requests_Proxy_HTTP::fsockopen_header()
最后更新于:2021-12-01 11:09:09
Requests_Proxy_( string$out)Add extra headers to the request before sending
参数
- $out
-
(string) (Required) HTTP header string
源文件
文件: gc-includes/Requests/Proxy/HTTP.php
public function fsockopen_header(&$out) {
$out .= sprintf("Proxy-Authorization: Basic %srn", base64_encode($this->get_auth_string()));
}