该存储库包含所有文档页面以及主网站的共享文件。 设置新存储库 git submodule add https://github.com/amphp/amphp.github.io docs/.shared # copy .gitignore, _config.yml and Gemfile from another repository # adjust navigation and paths in _config.yml cd docs ln -s .shared/asset asset bundle install --path vendor/bundle bundle exec jek
2021-01-28 16:08:06 858KB jekyll github-pages documentation amphp
1
该软件包提供了一个PSR-7适配器作为的插件。 安装 该软件包可以作为依赖项安装。 composer require amphp/http-client-psr7 用法 创建Amp\Http\Client\Psr7\PsrAdapter实例,以在本机Amp和PSR-7格式之间转换客户端请求和响应。 适配器不依赖于任何具体的PSR-7实现,因此它需要PSR-17工厂接口才能创建PSR-7请求和响应。 <?php use Amp \ Http \ Client \ Psr7 \ PsrAdapter ; use Amp \ Loop ; use Laminas \ Diactoros \ RequestFactory ; use Laminas \ Diactoros \ ResponseFactory ; Loop :: run ( function () { $ psrAdapter = new PsrAdapter (); // PSR-17 request factory $ psrRequestFactory = new RequestFactory
2021-01-28 16:07:50 17KB php http-client psr-7 amphp
1
websocket客户端 amphp/websocket-client是基于AmpPHP异步WebSocket客户端。 安装 该软件包可以作为依赖项安装。 composer require amphp/websocket-client 要求 PHP 7.2以上 文档和示例 更广泛的代码示例位于目录中。 use Amp \ Websocket \ Client \ Connection ; use Amp \ Websocket \ Message ; use function Amp \delay; use function Amp \ Websocket \ Client \connect; // Connects to the Kaazing echoing websocket demo. Amp \ Loop :: run ( function () { /** @var Connection $connection */ $ connection = yield connect ( 'ws://demos.kaazing.com/echo' );
2021-01-28 16:07:49 17KB php async websockets amphp
1
序列化:用于IPC和PHP中数据存储的序列化工具
2021-01-28 11:24:02 6KB php serialization amphp AmpPHP
1