alexanderpas/http-enum
Composer 安装命令:
composer require alexanderpas/http-enum
包简介
README 文档
README
This package provides HTTP Methods, Status Codes and Reason Phrases as PHP 8.1+ enums
All IANA registered HTTP Status codes and corresponding Reason Phrases as of the latest update on 2018-09-21 are supported.
This includes the HTTP Methods defined in RFC 5789 and RFC 7231, as well as all Status Codes and Reason Phrases as defined in HTTP/1.1 (RFC 7231, RFC 7232, RFC 7233, RFC 7235) and HTTP/2 (RFC 7540) as well as other RFC's defining HTTP status codes such as WebDAV (RFC 2518, RFC 4918, RFC 5842, RFC 8144) and more (RFC 8297, RFC 3229, RFC 7538, RFC 7694, RFC 6585, RFC 7725, RFC 2295, RFC 2774)
Requirements
- PHP 8.1 or above
Installation
Composer:
composer require alexanderpas/http-enum
Manually (Without Composer):
include the src/Method.php file in order to use the HTTP methods enum.
include both the src/ReasonPhrase.php file as well as the src/StatusCode.php file in order to use the HTTP Status Code enum or the HTTP Reason Phrase enum.
Available Enums and Enum methods
All available Enums live in the \Alexanderpas\Common\HTTP namespace.
- HTTP Methods are represented by the
\Alexanderpas\Common\HTTP\Methodenum. - HTTP Status Codes are represented by the
\Alexanderpas\Common\HTTP\StatusCodeenum. - HTTP Reason Phrases are represented by the
\Alexanderpas\Common\HTTP\ReasonPhraseenum.
In addition to the Enum methods available by default on Backed Enums, the following Enum methods are available.
Method::fromName(string $name): MethodGives back a HTTP method enum when provided with a valid HTTP method. (such as'GET'or'POST'or'put'or'pAtcH')StatusCode::fromInteger(int $integer): StatusCodeGives back a HTTP Status Code enum when provided with a valid HTTP status code as integer. (such as200or404)StatusCode::fromName(string $name): StatusCodeGives back a HTTP Status Code enum when provided with a valid HTTP status code as aHTTP_prefixed string. (such as'HTTP_200'or'HTTP_404')ReasonPhrase::fromInteger(int $integer): ReasonPhraseGives back a HTTP Reason Phrase enum when provided with a valid HTTP status code as integer. (such as200or404)ReasonPhrase::fromName(string $name): ReasonPhraseGives back a HTTP Reason Phrase enum when provided with a valid HTTP status code as aHTTP_prefixed string. (such as'HTTP_200'or'HTTP_404')
All of the above methods also have a try variant (such as Method::tryFromName(?string $name): ?Method), which returns null if an invalid value of the correct type has been given instead of throwing an exception.
Additionally, you can change between Status Code enums and Reason Phrase enums using the following methods:
ReasonPhrase::fromStatusCode(StatusCode $statusCode): ReasonPhrasechanges a Status Code enum into the corresponding Reason Phrase enum.StatusCode::fromReasonPhrase(ReasonPhrase $reasonPhrase): StatusCodechanges a Reason Phrase enum into the corresponding Status Code enum.
These methods do not have a try variant.
You can get the respective string or integer representation as usual by reading the value attribute on the enum.
License
Copyright Alexander Pas 2021. Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at https://www.boost.org/LICENSE_1_0.txt)
Notes
- Support for the HTTP status code 306 has intentionally been removed as it has been defined as Unused in RFC 7231, Section 6.4.6
- The Methods, Status Codes and Reason Phrases defined in the Hyper Text Coffee Pot Control Protocol (RFC 2324) are not supported as they aren't properly registered and provide Methods unique to that specific protocol.
- The Request Methods specific to WebDAV are not supported.
alexanderpas/http-enum 适用场景与选型建议
alexanderpas/http-enum 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 142.84k 次下载、GitHub Stars 达 81, 最近一次更新时间为 2021 年 09 月 20 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 alexanderpas/http-enum 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 alexanderpas/http-enum 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 142.84k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 82
- 点击次数: 6
- 依赖项目数: 4
- 推荐数: 0
其他信息
- 授权协议: BSL-1.0
- 更新时间: 2021-09-20