Http::fsockopen_remote_host_path( string $path, string $url )
Alter remote path before getting stream data
Parameters
- $path
-
(Required) Path to send in HTTP request string ("GET ...")
- $url
-
(Required) Full URL we're requesting
Source
File: wp-includes/Requests/src/Proxy/Http.php
public function fsockopen_remote_host_path(&$path, $url) {
$path = $url;
}
Changelog
Version | Description |
---|---|
1.6 | Introduced. |