<?php
/**
* Class Constants
*/
class Constants
{
* Years tag
const YEARS = '2020-2023';
* Version tag
const VERSION = '2.2.5';
* Return constant by its class name
*
* @param $value
* @return string|null
* @throws ReflectionException
public static function get($value)
$constants = self::getConstants();
if (!array_key_exists($value, $constants)) {
return null;
}
return $constants[$value];
* Gets all constants
* @return array
private static function getConstants()
$oClass = new ReflectionClass(__CLASS__);
return $oClass->getConstants();