php swoole请求远程api
时间: 2023-05-19 16:05:50 浏览: 284
可以使用Swoole的HttpClient模块来请求远程API,示例代码如下:
```php
$client = new Swoole\Coroutine\Http\Client('api.example.com', 80);
$client->set(['timeout' => 1]);
$client->get('/path/to/api', ['param1' => 'value1', 'param2' => 'value2']);
$response = $client->body;
$client->close();
```
其中,`api.example.com`是API的域名,`/path/to/api`是API的路径,`param1`和`param2`是API的参数。`$response`是API的响应内容。
阅读全文