<?php

class Calendar {
    const months = 12;

    //In version 8.3 you can 
    //specify the constant type
    const string PHP = 'PHP 8.3';
}

$months = Calendar::months;
//months is 12

echo $months;