Http::fsockopen_header( string $out )
Add extra headers to the request before sending
Parameters
- $out
-
(Required) HTTP header string
Source
File: wp-includes/Requests/src/Proxy/Http.php
public function fsockopen_header(&$out) {
$out .= sprintf("Proxy-Authorization: Basic %s\r\n", base64_encode($this->get_auth_string()));
}
Changelog
Version | Description |
---|---|
1.6 | Introduced. |