PHP code example of the-real-start / enums
1. Go to this page and download the library: Download the-real-start/enums 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/ */
the-real-start / enums example snippets
class OrderStatus extends Enum
{
const NEW = 'new';
const FAILED = 'failed';
const CANCELED = 'canceled';
}
echo '<p>Статус заказа: '.OrderStatus::getUiLabel($model->status).'</p>';
$statuses = OrderStatus::getUiEnums();