blob: 2b64a431795ba716554e294936c38b1f3908c073 (
plain) (
blame)
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
36
|
<?php
// Simple plaintext HTTP client example (for illustration purposes only).
// This shows how a plaintext TCP/IP connection is established to then send an
// application level protocol message (HTTP).
// Real applications should use react/http-client instead!
//
// This simple example only accepts an optional host parameter to send the
// request to. See also example #22 for proper URI parsing.
//
// $ php examples/11-http-client.php
// $ php examples/11-http-client.php reactphp.org
use React\EventLoop\Factory;
use React\Socket\Connector;
use React\Socket\ConnectionInterface;
$host = isset($argv[1]) ? $argv[1] : 'www.google.com';
require __DIR__ . '/../vendor/autoload.php';
$loop = Factory::create();
$connector = new Connector($loop);
$connector->connect($host. ':80')->then(function (ConnectionInterface $connection) use ($host) {
$connection->on('data', function ($data) {
echo $data;
});
$connection->on('close', function () {
echo '[CLOSED]' . PHP_EOL;
});
$connection->write("GET / HTTP/1.0\r\nHost: $host\r\n\r\n");
}, 'printf');
$loop->run();
|