1. Go to this page and download the library: Download bramus/enumeration library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
use Bramus\Http\StatusCodes\StatusCode;
$instance = new StatusCode(200);
// $instance = new StatusCode(StatusCode::OK); <-- This won't work, due to __getStatic not existing in PHP …
$instance = StatusCode::OK();
class StatusCode extends ComposedEnumeration
{
const __DEFAULT = 200;
public static $classes = [
…
];
}
use Bramus\Enumeration\Enumeration;
class Weekday extends Enumeration
{
/**
* Monday.
*
* The first day of the week.
*/
const MONDAY = 1;
//
}
$instance = new Weekday(1);
$instance->getSummary();
// ~> 'Monday.'
$instance->getDescription();
// ~> 'The first day of the week.'
Weekday::toSummary(Weekday::MONDAY);
// ~> 'Monday.'
Weekday::toSummary($instance);
// ~> 'Monday.'
Weekday::toDescription(Weekday::MONDAY);
// ~> 'The first day of the week.'
Weekday::toDescription($instance);
// ~> 'The first day of the week.'
$summaries = Weekday::summaries();
// ~> [1 => 'Monday.', 2 => 'Tuesday.', …, 7 => 'Sunday.']
$descriptions = Weekday::descriptions();
// ~> [1 => 'The first day of the week', 2 => 'The second day of the week', …, 7 => 'The seventh day of the week']
$instance = new Weekday(Weekday::MONDAY);
$instance->equals(1);
// ~> true
use Bramus\Enumeration\Helpers\Generator;
Generator::setNamespace('\\Bramus\\Http\\StatusCodes\\');
Generator::generateStatusCode(); // Generates a \Bramus\Http\StatusCodes\StatusCode instance with its default value
Generator::generateStatusCode(404); // Generates a \Bramus\Http\StatusCodes\StatusCode instance with the value 404
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.