ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
DateFormat.php
Go to the documentation of this file.
1 <?php
18 declare(strict_types=1);
19 
21 
27 {
28  public const DOT = '.';
29  public const COMMA = ',';
30  public const DASH = '-';
31  public const SLASH = '/';
32  public const SPACE = ' ';
33  public const DAY = 'd';
34  public const DAY_ORDINAL = 'jS';
35  public const WEEKDAY = 'l';
36  public const WEEKDAY_SHORT = 'D';
37  public const WEEK = 'W';
38  public const MONTH = 'm';
39  public const MONTH_SPELLED = 'F';
40  public const MONTH_SPELLED_SHORT = 'M';
41  public const YEAR = 'Y';
42  public const YEAR_TWO_DIG = 'y';
43  public const HOURS12 = 'h';
44  public const HOURS24 = 'H';
45  public const MINUTES = 'i';
46  public const SECONDS = 's';
47  public const MERIDIEM = 'a';
48  public const COLON = ':';
49 
50  public const TOKENS = [
51  self::DOT,
52  self::COMMA,
53  self::DASH,
54  self::SLASH,
55  self::SPACE,
56  self::DAY,
57  self::DAY_ORDINAL,
58  self::WEEKDAY,
59  self::WEEKDAY_SHORT,
60  self::WEEK,
61  self::MONTH,
62  self::MONTH_SPELLED,
63  self::MONTH_SPELLED_SHORT,
64  self::YEAR,
65  self::YEAR_TWO_DIG,
66  self::HOURS12,
67  self::HOURS24,
68  self::MINUTES,
69  self::SECONDS,
70  self::MERIDIEM,
71  self::COLON
72  ];
73 
75  protected array $format = [];
76 
77  public function __construct(array $format)
78  {
79  $this->validateFormatElelements($format);
80  $this->format = $format;
81  }
82 
83  public function validateFormatElelements(array $format): void
84  {
85  foreach ($format as $entry) {
86  if (!in_array($entry, self::TOKENS, true)) {
87  throw new \InvalidArgumentException("not a valid token for date-format", 1);
88  }
89  }
90  }
91 
96  public function toArray(): array
97  {
98  return $this->format;
99  }
100 
104  public function toString(): string
105  {
106  return implode('', $this->format);
107  }
108 
109  public function __toString(): string
110  {
111  return $this->toString();
112  }
113 
114  public function applyTo(\DateTimeImmutable $datetime): string
115  {
116  return $datetime->format($this->toString());
117  }
118 }
toArray()
Get the elements of the format as array.
Definition: DateFormat.php:96
validateFormatElelements(array $format)
Definition: DateFormat.php:83
applyTo(\DateTimeImmutable $datetime)
Definition: DateFormat.php:114
A Date Format provides a format definition akin to PHP&#39;s date formatting options, but stores the sing...
Definition: DateFormat.php:26
toString()
Get the format as string.
Definition: DateFormat.php:104