-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy path02-optional-proxy-http-request.php
35 lines (29 loc) · 1.15 KB
/
02-optional-proxy-http-request.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php
// A simple example which uses an HTTP client to request https://example.com/ (optional: Through an HTTP CONNECT proxy.)
// To run the example, go to the project root and run:
//
// $ php examples/02-optional-proxy-http-request.php
//
// If you chose the optional route, you can use any kind of proxy, for example https://github.com/leproxy/leproxy and execute it like this:
//
// $ php leproxy.php
//
// To run the same example with your proxy, the proxy URL can be given as an environment variable:
//
// $ http_proxy=127.0.0.1:8080 php examples/02-optional-proxy-http-request.php
require __DIR__ . '/../vendor/autoload.php';
$connector = null;
$url = getenv('http_proxy');
if ($url !== false) {
$proxy = new Clue\React\HttpProxy\ProxyConnector($url);
$connector = new React\Socket\Connector(array(
'tcp' => $proxy,
'dns' => false
));
}
$browser = new React\Http\Browser($connector);
$browser->get('https://example.com/')->then(function (Psr\Http\Message\ResponseInterface $response) {
var_dump($response->getHeaders(), (string) $response->getBody());
}, function (Exception $e) {
echo 'Error: ' . $e->getMessage() . PHP_EOL;
});