phputil/httpwrapper
Composer 安装命令:
composer require phputil/httpwrapper
包简介
A simple PSR-7 wrapper for common responses.
README 文档
README
This library provides a wrapper for the
PSR-7's ResponseInterface.
You have to use it with a library/framework that offers a PSR-7 implementation, such as Slim 3, Guzzle, Aura or Zend.
We use semantic versioning. See our releases.
Classes:
Dependencies (installed automatically by composer):
Installation
composer require phputil/httpwrapper
Example 1
Using with Slim 3:
<?php require 'vendor/autoload.php'; use \phputil\HttpResponseWrapper; use \Slim\App; $app = new App(); $hrw = new HttpResponseWrapper(); $app->get( '/names', function ( $request, $response, $args ) use ( $hrw ) { $names = array( 'Suzan', 'Mary', 'Mike', 'Bob' ); // Will return HTTP 200 with the array as JSON encoded with UTF-8 return $hrw->with( $response ) ->withStatusOk() ->asJsonUtf8( $names ) // Any var type accepted ->end() ; } ); $app->get( '/bad', function ( $request, $response, $args ) use ( $hrw ) { // Will return HTTP 400 return $hrw->with( $response )->withStatusBadRequest->end(); } ); $app->get( '/i-am-just-curious', function ( $request, $response, $args ) use ( $hrw ) { // Will return HTTP 403 (Forbidden) return $hrw->with( $response )->withStatusForbidden->end(); } ); ?>
Example 2
Also with Slim 3:
<?php require 'vendor/autoload.php'; use \phputil\HttpResponseWrapper; use \Slim\App; $app = new App(); $hrw = new HttpResponseWrapper(); $app->get( '/names', function ( $request, $response, $args ) use ( $hrw ) { $names = array( 'Suzan', 'Mary', 'Mike', 'Bob' ); // Helper method to return HTTP 200 with a JSON content encoded with UTF-8. return $hrw->with( $response )->ok( $names ); } ); $app->get( '/bad', function ( $request, $response, $args ) use ( $hrw ) { // Helper method to return HTTP 400 with a JSON content encoded with UTF-8. return $hrw->with( $response )->bad( array( 'Something bad happened' ) ); } ); $app->get( '/none', function ( $request, $response, $args ) use ( $hrw ) { // Helper method to return HTTP 204. return $hrw->with( $response )->noContent(); } ); ?>
phputil/httpwrapper 适用场景与选型建议
phputil/httpwrapper 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 513 次下载、GitHub Stars 达 2, 最近一次更新时间为 2016 年 06 月 03 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「php」 「http」 「response」 「wrapper」 「psr」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 phputil/httpwrapper 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 phputil/httpwrapper 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 phputil/httpwrapper 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
repository php library
HTTP request logger middleware for Laravel
Class to generate a standard structure for api json responses
http客户端
Easily add Excepct-CT header to your project
Build mini web servers in PHP for testing
统计信息
- 总下载量: 513
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 11
- 依赖项目数: 0
- 推荐数: 1
其他信息
- 授权协议: LGPL-3
- 更新时间: 2016-06-03