react/http-client
最新稳定版本:v0.5.11
Composer 安装命令:
composer require react/http-client
包简介
Event-driven, streaming HTTP client for ReactPHP
关键字:
README 文档
README
This package has now been migrated over to react/http and only exists for BC reasons.
$ composer require react/http
If you've previously used this package, upgrading may take a moment or two. The new API has been updated to use Promises and PSR-7 message abstractions. This means it's now more powerful and easier to use than ever:
// old $client = new React\HttpClient\Client($loop); $request = $client->request('GET', 'https://example.com/'); $request->on('response', function ($response) { $response->on('data', function ($chunk) { echo $chunk; }); }); $request->end(); // new $browser = new React\Http\Browser($loop); $browser->get('https://example.com/')->then(function (Psr\Http\Message\ResponseInterface $response) { echo $response->getBody(); });
See react/http for more details.
The below documentation applies to the last release of this package. Further development will take place in the updated react/http, so you're highly recommended to upgrade as soon as possible.
Deprecated HttpClient
Event-driven, streaming HTTP client for ReactPHP.
Table of Contents
Basic usage
Client
The Client is responsible for communicating with HTTP servers, managing the
connection state and sending your HTTP requests.
It also registers everything with the main EventLoop.
$loop = React\EventLoop\Factory::create(); $client = new Client($loop);
If you need custom connector settings (DNS resolution, TLS parameters, timeouts,
proxy servers etc.), you can explicitly pass a custom instance of the
ConnectorInterface:
$connector = new \React\Socket\Connector($loop, array( 'dns' => '127.0.0.1', 'tcp' => array( 'bindto' => '192.168.10.1:0' ), 'tls' => array( 'verify_peer' => false, 'verify_peer_name' => false ) )); $client = new Client($loop, $connector);
The request(string $method, string $uri, array $headers = array(), string $version = '1.0'): Request
method can be used to prepare new Request objects.
The optional $headers parameter can be used to pass additional request
headers.
You can use an associative array (key=value) or an array for each header value
(key=values).
The Request will automatically include an appropriate Host,
User-Agent: react/alpha and Connection: close header if applicable.
You can pass custom header values or use an empty array to omit any of these.
The Request#write(string $data) method can be used to
write data to the request body.
Data will be buffered until the underlying connection is established, at which
point buffered data will be sent and all further data will be passed to the
underlying connection immediately.
The Request#end(?string $data = null) method can be used to
finish sending the request.
You may optionally pass a last request body data chunk that will be sent just
like a write() call.
Calling this method finalizes the outgoing request body (which may be empty).
Data will be buffered until the underlying connection is established, at which
point buffered data will be sent and all further data will be ignored.
The Request#close() method can be used to
forefully close sending the request.
Unlike the end() method, this method discards any buffers and closes the
underlying connection if it is already established or cancels the pending
connection attempt otherwise.
Request implements WritableStreamInterface, so a Stream can be piped to it. Interesting events emitted by Request:
response: The response headers were received from the server and successfully parsed. The first argument is a Response instance.drain: The outgoing buffer drained and the response is ready to accept more data for the nextwrite()call.error: An error occurred, anExceptionis passed as first argument. If the response emits anerrorevent, this will also be emitted here.close: The request is closed. If an error occurred, this event will be preceeded by anerrorevent. For a successful response, this will be emitted only once the response emits thecloseevent.
Response implements ReadableStreamInterface. Interesting events emitted by Response:
data: Passes a chunk of the response body as first argument. When a response encounters a chunked encoded response it will parse it transparently for the user and removing theTransfer-Encodingheader.error: An error occurred, anExceptionis passed as first argument. This will also be forwarded to the request and emit anerrorevent there.end: The response has been fully received.close: The response is closed. If an error occured, this event will be preceeded by anerrorevent. This will also be forwarded to the request and emit acloseevent there.
Example
<?php $loop = React\EventLoop\Factory::create(); $client = new React\HttpClient\Client($loop); $request = $client->request('GET', 'https://github.com/'); $request->on('response', function ($response) { $response->on('data', function ($chunk) { echo $chunk; }); $response->on('end', function() { echo 'DONE'; }); }); $request->on('error', function (\Exception $e) { echo $e; }); $request->end(); $loop->run();
See also the examples.
Advanced Usage
Unix domain sockets
By default, this library supports transport over plaintext TCP/IP and secure
TLS connections for the http:// and https:// URI schemes respectively.
This library also supports Unix domain sockets (UDS) when explicitly configured.
In order to use a UDS path, you have to explicitly configure the connector to override the destination URI so that the hostname given in the request URI will no longer be used to establish the connection:
$connector = new FixedUriConnector( 'unix:///var/run/docker.sock', new UnixConnector($loop) ); $client = new Client($loop, $connector); $request = $client->request('GET', 'http://localhost/info');
See also example #11.
Install
The recommended way to install this library is through Composer. New to Composer?
This will install the latest supported version:
$ composer require react/http-client:^0.5.10
See also the CHANGELOG for details about version upgrades.
This project aims to run on any platform and thus does not require any PHP extensions and supports running on legacy PHP 5.3 through current PHP 7+ and HHVM. It's highly recommended to use PHP 7+ for this project.
Tests
To run the test suite, you first need to clone this repo and then install all dependencies through Composer:
$ composer install
To run the test suite, go to the project root and run:
$ php vendor/bin/phpunit
The test suite also contains a number of functional integration tests that send test HTTP requests against the online service http://httpbin.org and thus rely on a stable internet connection. If you do not want to run these, they can simply be skipped like this:
$ php vendor/bin/phpunit --exclude-group internet
License
MIT, see LICENSE file.
react/http-client 适用场景与选型建议
react/http-client 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 7.07M 次下载、GitHub Stars 达 231, 最近一次更新时间为 2026 年 01 月 04 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「http」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 react/http-client 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 react/http-client 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 react/http-client 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
repository php library
http客户端
Easily add Excepct-CT header to your project
Build mini web servers in PHP for testing
Cbox SSRF — a hardened, config-driven guard against server-side request forgery for outbound URLs in Laravel. Blocks private/reserved/cloud-metadata targets, pins DNS, and refuses redirects.
Eventually this library may have some useful HTTP-related helpers, but currently there's only HTTP response status codes.
统计信息
- 总下载量: 7.07M
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 234
- 点击次数: 32
- 依赖项目数: 43
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-01-04