|  Download Http Status CodesEnums of all official http status codes and their descriptions. Installationcomposer require ahmard/http-status-codes
 Usage<?php
require __DIR__ . '/vendor/autoload.php';
$sc = \HttpStatusCodes\StatusCode::CREATED;
// Get Status Code  =>  "201"
$sc->value;
$desc = $sc->describe();
// Get Status Code  =>  "201"
$desc->code;
// Get Status Code Title  => "Created"
$desc->title;
 You can also get description of a given status code, the description is copied from Wikipedia. <?php
$sc = \HttpStatusCodes\StatusCode::CREATED;
// Get Description  =>  "The request has been fulfilled, resulting in the creation of a new resource."
$sc->describe()->desc;
 |