Contao\Date::isNumericFormat PHP Method

isNumericFormat() public static method

Check for a numeric date format
public static isNumericFormat ( string $strFormat ) : boolean
$strFormat string The PHP format string
return boolean True if the date format is numeric
    public static function isNumericFormat($strFormat)
    {
        return !preg_match('/[BbCcDEeFfIJKkLlMNOoPpQqRrSTtUuVvWwXxZz]+/', $strFormat);
    }