snapshotpl / status-code
HTTP status code value object implementation in PHP
Installs: 13 699
Dependents: 1
Suggesters: 0
Security: 0
Stars: 1
Watchers: 2
Forks: 0
Open Issues: 1
Requires
- php: ^5.5 || ^7.0
- psr/http-message: ^1.0
Requires (Dev)
- phpunit/phpunit: ^4.8
- zendframework/zend-diactoros: ^1.3
This package is auto-updated.
Last update: 2024-10-29 04:04:04 UTC
README
HTTP status code value object implementation in PHP.
Features
- validation,
- auto setup reason phrase (if known),
- immutable,
- support PSR-7
Psr\Http\Message\ResponseInterface
.
Supported RFCs:
- https://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html
- https://tools.ietf.org/html/rfc4918
- https://tools.ietf.org/html/rfc3229
- https://tools.ietf.org/html/rfc5842
- https://tools.ietf.org/html/rfc7538
- https://tools.ietf.org/html/rfc7540
- https://tools.ietf.org/html/rfc7231
- https://tools.ietf.org/html/rfc2518
- https://tools.ietf.org/html/rfc6585
- https://tools.ietf.org/html/rfc2295
- https://tools.ietf.org/html/rfc2774
Supported drafts:
Installation
Add to composer:
{ "require": { "snapshotpl/status-code": "^1.0" } }
Usage
$statusCode = new StatusCode(404); $statusCode->isClientError(); // true $statusCode->isRfc2516() // true $statusCode->isServerError(); // false echo $statusCode; // 404 Not Found
You can use it with anny PSR-7 implementation:
$response = new Zend\Diactoros\Response(); $statusCode = StatusCode::createFromResponse($response); echo $statusCode; // 200 OK
$response = new Zend\Diactoros\Response(); $statusCode = new StatusCode(404, 'Not exists'); $newResponse = $statusCode->attachToResponse($response); echo $newResponse->getStatusCode(); // 404 echo $newResponse->getReasonPhrase(); // Not exists