1C-Bitrix 25.700.0
Загрузка...
Поиск...
Не найдено
DateFormat.php
См. документацию.
1<?php
2declare(strict_types=1);
3
5
9enum DateFormat: string
10{
11 // examples in the comments below are from EN (USA), they will be different in different cultures
12 case FormatDate = 'FORMAT_DATE'; // 12/31/2019
13 case FormatDatetime = 'FORMAT_DATETIME'; // 12/31/2019 11:36:49 pm
14 case ShortDateFormat = 'SHORT_DATE_FORMAT'; // 12/31/2019
15 case MediumDateFormat = 'MEDIUM_DATE_FORMAT'; // Dec 31, 2019
16 case LongDateFormat = 'LONG_DATE_FORMAT'; // December 31, 2019
17 case DayMonthFormat = 'DAY_MONTH_FORMAT'; // December 31
18 case DayShortMonthFormat = 'DAY_SHORT_MONTH_FORMAT'; // Dec 31
19 case ShortDayOfWeekMonthFormat = 'SHORT_DAY_OF_WEEK_MONTH_FORMAT'; // Tue, December 31
20 case ShortDayOfWeekShortMonthFormat = 'SHORT_DAY_OF_WEEK_SHORT_MONTH_FORMAT'; // Tue, Dec 31
21 case DayOfWeekMonthFormat = 'DAY_OF_WEEK_MONTH_FORMAT'; // Tuesday, December 31
22 case FullDateFormat = 'FULL_DATE_FORMAT'; // Tuesday, December 31, 2019
23 case ShortTimeFormat = 'SHORT_TIME_FORMAT'; // 2:05 pm
24 case LongTimeFormat = 'LONG_TIME_FORMAT'; // 2:05:15 pm
25}
FormatDate($format="", $timestamp=false, $now=false, ?string $languageId=null)
Определения tools.php:871