Guzzle Swoole
让基于 Guzzle 的项目完美无缝兼容 Swoole 协程,支持:Guzzle、Elasticsearch client——来自宇润 PHP 全家桶
guzzle-swoole 可以无损支持 Guzzle 在 Swoole 协程环境下的运行,不需要修改任何一行第三方包代码,即可支持协程化。 The project is written primarily in PHP, distributed under the MIT License license, first published in 2018. Key topics include: coroutine, guzzle, guzzlehttp, php, swoole.
Latest release: v2.2.4
January 10, 2022View Changelog →
Guzzle-Swoole
介绍
guzzle-swoole 可以无损支持 Guzzle 在 Swoole 协程环境下的运行,不需要修改任何一行第三方包代码,即可支持协程化。
支持 Guzzle v6.x、v7.x。
支持 Composer v1.x、v2.x。
可以用于 ElasticSearch、AWS 等 SDK 当中。
兼容所有 Swoole 框架。
使用说明
安装
手动改 composer.json:"yurunsoft/guzzle-swoole":"^2.2"
命令行安装:composer require yurunsoft/guzzle-swoole
全局设定处理器
php<?php require dirname(__DIR__) . '/vendor/autoload.php'; use GuzzleHttp\Client; use Yurun\Util\Swoole\Guzzle\SwooleHandler; use GuzzleHttp\DefaultHandler; // 在你的项目入口加上这句话 DefaultHandler::setDefaultHandler(SwooleHandler::class); go(function(){ $client = new Client(); $response = $client->request('GET', 'http://www.baidu.com', [ 'verify' => false, ]); var_dump($response->getStatusCode()); });
手动指定 Swoole 处理器
phpuse GuzzleHttp\Client; use GuzzleHttp\HandlerStack; use Yurun\Util\Swoole\Guzzle\SwooleHandler; go(function(){ $handler = new SwooleHandler(); $stack = HandlerStack::create($handler); $client = new Client(['handler' => $stack]); $response = $client->request('GET', 'http://www.baidu.com', [ 'verify' => false, ]); var_dump($response->getBody()->__toString(), $response->getHeaders()); });
更加详细的示例代码请看test目录下代码。
ElasticSearch
php$client = \Elasticsearch\ClientBuilder::create()->setHosts(['192.168.0.233:9200'])->setHandler(new \Yurun\Util\Swoole\Guzzle\Ring\SwooleHandler())->build();
Contributors
Showing top 3 contributors by commit count.
This article is auto-generated from Yurunsoft/Guzzle-Swoole via the GitHub API.Last fetched: 6/28/2026

