Requests_Proxy_HTTP::fsockopen_remote_host_path() public WP 1.6
Alter remote path before getting stream data
{} It's a method of the class: Requests_Proxy_HTTP{}
No Hooks.
Return
Null. Nothing.
Usage
$Requests_Proxy_HTTP = new Requests_Proxy_HTTP(); $Requests_Proxy_HTTP->fsockopen_remote_host_path( $path, $url );
- $path(string) (required)
- Path to send in HTTP request string ("GET ...")
- $url(string) (required)
- Full URL we're requesting
Changelog
Since 1.6 | Introduced. |
Code of Requests_Proxy_HTTP::fsockopen_remote_host_path() Requests Proxy HTTP::fsockopen remote host path WP 5.6.2
public function fsockopen_remote_host_path(&$path, $url) {
$path = $url;
}