Home

Awesome

Httpstatus

Latest Version on Packagist Software License Build Status Build Status Total Downloads

The Httpstatus package provides an easy and convinent way to retrieve the standard status text (english) for any given HTTP status code. You can also get the HTTP status code for any valid status text. Additionally this package provides all status codes as constants, to use for a better readability of your code (HTTP_OK is just much easier to understand than 200).

Install

Via Composer

$ composer require lukasoppermann/http-status

Usage

$Httpstatus = new Lukasoppermann\Httpstatus\Httpstatus();

// (optional) specify language, default: en
$Httpstatus->setLanguage('en'); // Currently supported: en, fr

// get status text from code
echo $Httpstatus->getReasonPhrase(301); // Moved Permanently

// get the status code by text
echo $Httpstatus->getStatusCode('Method Not Allowed'); // 405

// check if status code exists
echo $Httpstatus->hasStatusCode(404); // true
echo $Httpstatus->hasStatusCode(601); // false

// check if reason phrase exists
echo $Httpstatus->hasReasonPhrase('Method Not Allowed'); // true
echo $Httpstatus->hasReasonPhrase('Does not exist'); // false

// determine the type (or "class") of the code
echo $Httpstatus->getResponseClass(503); // Httpstatus::CLASS_SERVER_ERROR

This package provides an interface with all status codes as constanst for your convenience. When developing a class that deals with HTTP status codes, simply implement the interface and start using constants instead of magic numbers for more readable and understandable code.

use Lukasoppermann\Httpstatus\Httpstatuscodes;

class Response implements Httpstatuscodes{

  public function someMethod(){
      // ... some logic
      return respond(self::HTTP_CREATED, $json);
  }

}

It is also possible to directly use a constant from the Interface if you so desire.

use Lukasoppermann\Httpstatus\Httpstatuscodes as Status;

class UserTest{

  public function test_create_new_user(){
      $this->assertEquals(Status::HTTP_CREATED, $response->status());
  }

}

Configure

If you want to localize status texts, you can supply an array when initiating the class. You may overwrite all or just some codes. A reason phrase has to be unique and may only be used for one status code.

// add custom texts
$Httpstatus = new Lukasoppermann\Httpstatus\Httpstatus([
    200 => 'Kein Inhalt',
    404 => 'Nicht gefunden',
]);

HTTP status code classes (from RFC7231)

The first digit of the status-code defines the class of response. The last two digits do not have any categorization role. There are five values for the first digit:

DigitCategoryMeaning
1xxInformationalThe request was received, continuing process
2xxSuccessfulThe request was successfully received, understood, and accepted
3xxRedirectionFurther action needs to be taken in order to complete the request
4xxClient ErrorThe request contains bad syntax or cannot be fulfilled
5xxServer ErrorThe server failed to fulfill an apparently valid request

Available HTTP status codes

CodeMessageRFC
100Continue[RFC7231, Section 6.2.1]
101Switching Protocols[RFC7231, Section 6.2.2]
102Processing[RFC2518]
103-199Unassigned
200OK[RFC7231, Section 6.3.1]
201Created[RFC7231, Section 6.3.2]
202Accepted[RFC7231, Section 6.3.3]
203Non-Authoritative Information[RFC7231, Section 6.3.4]
204No Content[RFC7231, Section 6.3.5]
205Reset Content[RFC7231, Section 6.3.6]
206Partial Content[RFC7233, Section 4.1]
207Multi-Status[RFC4918]
208Already Reported[RFC5842]
209-225Unassigned
226IM Used[RFC3229]
227-299Unassigned
300Multiple Choices[RFC7231, Section 6.4.1]
301Moved Permanently[RFC7231, Section 6.4.2]
302Found[RFC7231, Section 6.4.3]
303See Other[RFC7231, Section 6.4.4]
304Not Modified[RFC7232, Section 4.1]
305Use Proxy[RFC7231, Section 6.4.5]
306(Unused)[RFC7231, Section 6.4.6]
307Temporary Redirect[RFC7231, Section 6.4.7]
308Permanent Redirect[RFC7538]
309-399Unassigned
400Bad Request[RFC7231, Section 6.5.1]
401Unauthorized[RFC7235, Section 3.1]
402Payment Required[RFC7231, Section 6.5.2]
403Forbidden[RFC7231, Section 6.5.3]
404Not Found[RFC7231, Section 6.5.4]
405Method Not Allowed[RFC7231, Section 6.5.5]
406Not Acceptable[RFC7231, Section 6.5.6]
407Proxy Authentication Required[RFC7235, Section 3.2]
408Request Timeout[RFC7231, Section 6.5.7]
409Conflict[RFC7231, Section 6.5.8]
410Gone[RFC7231, Section 6.5.9]
411Length Required[RFC7231, Section 6.5.10]
412Precondition Failed[RFC7232, Section 4.2]
413Payload Too Large[RFC7231, Section 6.5.11]
414URI Too Long[RFC7231, Section 6.5.12]
415Unsupported Media Type[RFC7231, Section 6.5.13]
416Range Not Satisfiable[RFC7233, Section 4.4]
417Expectation Failed[RFC7231, Section 6.5.14]
418I'm a teapot[RFC2324, Section 2.3.2]
419-420Unassigned
421Misdirected Request[RFC7540, Section 9.1.2]
422Unprocessable Entity[RFC4918]
423Locked[RFC4918]
424Failed Dependency[RFC4918]
425Too Early[RFC8740, Section 5.2]
426Upgrade Required[RFC7231, Section 6.5.15]
427Unassigned
428Precondition Required[RFC6585]
429Too Many Requests[RFC6585]
430Unassigned
431Request Header Fields Too Large[RFC6585]
432-499Unassigned
500Internal Server Error[RFC7231, Section 6.6.1]
501Not Implemented[RFC7231, Section 6.6.2]
502Bad Gateway[RFC7231, Section 6.6.3]
503Service Unavailable[RFC7231, Section 6.6.4]
504Gateway Timeout[RFC7231, Section 6.6.5]
505HTTP Version Not Supported[RFC7231, Section 6.6.6]
506Variant Also Negotiates[RFC2295]
507Insufficient Storage[RFC4918]
508Loop Detected[RFC5842]
509Unassigned
510Not Extended[RFC2774]
511Network Authentication Required[RFC6585]
512-599Unassigned

Change log

Please see CHANGELOG for more information what has changed recently.

Testing

$ composer test

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email oppermann.lukas@gmail.com instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.