12345678910111213141516171819202122232425 |
- <?php
- $cli = new swoole_http_client('127.0.0.1', 9501);
- //post request
- //$cli->setData(http_build_query(['a'=>123,'b'=>"哈哈"]));
- //$cli->set(['timeout' => -1]);
- //$cli->setHeaders(['Host' => 'www.baidu.com']);
- //$cli->set(['http_proxy_host' => '127.0.0.1', 'http_proxy_port' => 8888,]);
- $cli->setHeaders(['User-Agent' => "swoole"]);
- $cli->get('/index.php', function ($cli)
- {
- var_dump($cli);
- });
- //$cli->post('/dump.php', array("test" => 'abc'), function ($cli) {
- // echo $cli->body;
- // $cli->get('/index.php', function ($cli) {
- // file_put_contents(__DIR__.'/t.html', $cli->body);
- // $cli->download('/index.php', __DIR__.'/phpinfo.html', function ($cli)
- // {
- // var_dump($cli->downloadFile);
- // });
- // });
- //});
|