1: <?php declare(strict_types=1);
2:
3: namespace Salient\Core\Date;
4:
5: use Salient\Contract\Core\DateParserInterface;
6: use DateTimeImmutable;
7: use DateTimeZone;
8:
9: /**
10: * Parses date and time strings with a given format
11: *
12: * @api
13: */
14: final class DateFormatParser implements DateParserInterface
15: {
16: private string $Format;
17:
18: /**
19: * @api
20: *
21: * @param string $format Passed to
22: * {@see DateTimeImmutable::createFromFormat()}. See
23: * {@link https://www.php.net/manual/en/datetimeimmutable.createfromformat.php}
24: * for syntax.
25: */
26: public function __construct(string $format)
27: {
28: // Reset fields that don't appear in the format string to zero-like
29: // values, otherwise they will be set to the current date and time
30: if (strcspn($format, '!|') === strlen($format)) {
31: $format .= '|';
32: }
33: $this->Format = $format;
34: }
35:
36: /**
37: * @inheritDoc
38: */
39: public function parse(string $value, ?DateTimeZone $timezone = null): ?DateTimeImmutable
40: {
41: $date = DateTimeImmutable::createFromFormat($this->Format, $value, $timezone);
42: if ($date === false) {
43: return null;
44: }
45: return $date;
46: }
47: }
48: