-
Notifications
You must be signed in to change notification settings - Fork 6
/
DateTime.php
791 lines (717 loc) · 22.9 KB
/
DateTime.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
<?php
/*
* This file is part of the ICanBoogie package.
*
* (c) Olivier Laviale <olivier.laviale@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace ICanBoogie;
use DateTimeZone;
use RuntimeException;
/**
* Representation of a date and time.
*
* <pre>
* <?php
*
* // Let's say that _now_ is 2013-02-03 21:03:45 in Paris
*
* use ICanBoogie\DateTime;
*
* date_default_timezone_set('EST'); // set local time zone to Eastern Standard Time
*
* $time = new DateTime('now', 'Europe/Paris');
*
* echo $time; // 2013-02-03T21:03:45+0100
* echo $time->utc; // 2013-02-03T20:03:45Z
* echo $time->local; // 2013-02-03T15:03:45-0500
* echo $time->utc->local; // 2013-02-03T15:03:45-0500
* echo $time->utc->is_utc; // true
* echo $time->utc->is_local; // false
* echo $time->local->is_utc; // false
* echo $time->local->is_local; // true
* echo $time->is_dst; // false
*
* echo $time->as_rss; // Sun, 03 Feb 2013 21:03:45 +0100
* echo $time->as_db; // 2013-02-03 21:03:45
*
* echo $time->as_time; // 21:03:45
* echo $time->utc->as_time; // 20:03:45
* echo $time->local->as_time; // 15:03:45
* echo $time->utc->local->as_time; // 15:03:45
*
* echo $time->quarter; // 1
* echo $time->week; // 5
* echo $time->day; // 3
* echo $time->minute; // 3
* echo $time->is_monday; // false
* echo $time->is_saturday; // true
* echo $time->is_today; // true
* echo $time->tomorrow; // 2013-02-04T00:00:00+0100
* echo $time->tomorrow->is_future // true
* echo $time->yesterday; // 2013-02-02T00:00:00+0100
* echo $time->yesterday->is_past // true
* echo $time->monday; // 2013-01-28T00:00:00+0100
* echo $time->sunday; // 2013-02-03T00:00:00+0100
*
* echo $time->timestamp; // 1359921825
* echo $time; // 2013-02-03T21:03:45+0100
* $time->timestamp += 3600 * 4;
* echo $time; // 2013-02-04T01:03:45+0100
*
* echo $time->zone; // Europe/Paris
* echo $time->zone->offset; // 3600
* echo $time->zone->location; // FR,48.86667,2.33333
* echo $time->zone->location->latitude; // 48.86667
* $time->zone = 'Asia/Tokyo';
* echo $time; // 2013-02-04T09:03:45+0900
*
* $time->hour += 72;
* echo "Rendez-vous in 72 hours: $time"; // Rendez-vous in 72 hours: 2013-02-07T05:03:45+0900
* </pre>
*
* Empty dates are also supported:
*
* <pre>
* <?php
*
* use ICanBoogie\DateTime;
*
* $time = new DateTime('0000-00-00', 'utc');
* // or
* $time = DateTime::none();
*
* echo $time->is_empty; // true
* echo $time->as_date; // 0000-00-00
* echo $time->as_db; // 0000-00-00 00:00:00
* echo $time; // ""
* </pre>
*
* @property int $timestamp Unix timestamp.
* @property int $day Day of the month.
* @property int $hour Hour of the day.
* @property int $minute Minute of the hour.
* @property int $month Month of the year.
* @property-read int $quarter Quarter of the year.
* @property int $second Second of the minute.
* @property-read int $week Week of the year.
* @property-read int $weekday Day of the week.
* @property int $year Year.
* @property-read int $year_day Day of the year.
* @property-read bool $is_monday `true` if the instance represents Monday.
* @property-read bool $is_tuesday `true` if the instance represents Tuesday.
* @property-read bool $is_wednesday `true` if the instance represents Wednesday.
* @property-read bool $is_thursday `true` if the instance represents Thursday.
* @property-read bool $is_friday `true` if the instance represents Friday.
* @property-read bool $is_saturday `true` if the instance represents Saturday.
* @property-read bool $is_sunday `true` if the instance represents Sunday.
* @property-read bool $is_today `true` if the instance is today.
* @property-read bool $is_past `true` if the instance lies in the past.
* @property-read bool $is_future `true` if the instance lies in the future.
* @property-read bool $is_empty `true` if the instance represents an empty date such as "0000-00-00" or "0000-00-00 00:00:00".
* @property-read DateTime $tomorrow A new instance representing the next day. Time is reset to 00:00:00.
* @property-read DateTime $yesterday A new instance representing the previous day. Time is reset to 00:00:00.
* @property-read DateTime $monday A new instance representing Monday of the week. Time is reset to 00:00:00.
* @property-read DateTime $tuesday A new instance representing Tuesday of the week. Time is reset to 00:00:00.
* @property-read DateTime $wednesday A new instance representing Wednesday of the week. Time is reset to 00:00:00.
* @property-read DateTime $thursday A new instance representing Thursday of the week. Time is reset to 00:00:00.
* @property-read DateTime $friday A new instance representing Friday of the week. Time is reset to 00:00:00.
* @property-read DateTime $saturday A new instance representing Saturday of the week. Time is reset to 00:00:00.
* @property-read DateTime $sunday A new instance representing Sunday of the week. Time is reset to 00:00:00.
*
* @property-read string $as_atom The instance formatted according to {@link ATOM}.
* @property-read string $as_cookie The instance formatted according to {@link COOKIE}.
* @property-read string $as_iso8601 The instance formatted according to {@link ISO8601}.
* @property-read string $as_rfc822 The instance formatted according to {@link RFC822}.
* @property-read string $as_rfc850 The instance formatted according to {@link RFC850}.
* @property-read string $as_rfc1036 The instance formatted according to {@link RFC1036}.
* @property-read string $as_rfc1123 The instance formatted according to {@link RFC1123}.
* @property-read string $as_rfc2822 The instance formatted according to {@link RFC2822}.
* @property-read string $as_rfc3339 The instance formatted according to {@link RFC3339}.
* @property-read string $as_rss The instance formatted according to {@link RSS}.
* @property-read string $as_w3c The instance formatted according to {@link W3C}.
* @property-read string $as_db The instance formatted according to {@link DB}.
* @property-read string $as_number The instance formatted according to {@link NUMBER}.
* @property-read string $as_date The instance formatted according to {@link DATE}.
* @property-read string $as_time The instance formatted according to {@link TIME}.
*
* @property TimeZone $zone The timezone of the instance.
* @property-read DateTime $utc A new instance in the UTC timezone.
* @property-read DateTime $local A new instance in the local timezone.
* @property-read bool $is_utc `true` if the instance is in the UTC timezone.
* @property-read bool $is_local `true` if the instance is in the local timezone.
* @property-read bool $is_dst `true` if time occurs during Daylight Saving Time in its time zone.
*
* @method string format_as_atom() format_as_atom() Formats the instance according to {@link ATOM}.
* @method string format_as_cookie() format_as_cookie() Formats the instance according to {@link COOKIE}.
* @method string format_as_iso8601() format_as_iso8601() Formats the instance according to {@link ISO8601}.
* @method string format_as_rfc822() format_as_rfc822() Formats the instance according to {@link RFC822}.
* @method string format_as_rfc850() format_as_rfc850() Formats the instance according to {@link RFC850}.
* @method string format_as_rfc1036() format_as_rfc1036() Formats the instance according to {@link RFC1036}.
* @method string format_as_rfc1123() format_as_rfc1123() Formats the instance according to {@link RFC1123}.
* @method string format_as_rfc2822() format_as_rfc2822() Formats the instance according to {@link RFC2822}.
* @method string format_as_rfc3339() format_as_rfc3339() Formats the instance according to {@link RFC3339}.
* @method string format_as_rss() format_as_rss() Formats the instance according to {@link RSS}.
* @method string format_as_w3c() format_as_w3c() Formats the instance according to {@link W3C}.
* @method string format_as_db() format_as_db() Formats the instance according to {@link DB}.
* @method string format_as_number() format_as_number() Formats the instance according to {@link NUMBER}.
* @method string format_as_date() format_as_date() Formats the instance according to {@link DATE}.
* @method string format_as_time() format_as_time() Formats the instance according to {@link TIME}.
*
* @see http://en.wikipedia.org/wiki/ISO_8601
*/
class DateTime extends \DateTime implements \JsonSerializable
{
/**
* We redefine the constant to make sure that the cookie uses a valid pattern.
*
* @see http://grokbase.com/t/php/php-bugs/111xynxd6m/php-bug-bug-53879-new-datetime-createfromformat-fails-to-parse-cookie-expiration-date
*/
public const COOKIE = 'l, d-M-Y H:i:s T';
/**
* DB (example: 2013-02-03 20:59:03)
*/
public const DB = 'Y-m-d H:i:s';
/**
* Number (example: 20130203205903)
*/
public const NUMBER = 'YmdHis';
/**
* Date (example: 2013-02-03)
*/
public const DATE = 'Y-m-d';
/**
* Time (example: 20:59:03)
*/
public const TIME = 'H:i:s';
/**
* Callable used to create localized instances.
*
* @var callable
*/
static public $localizer = null;
/**
* Creates a {@link DateTime} instance from a source.
*
* <pre>
* <?php
*
* use ICanBoogie\DateTime;
*
* DateTime::from(new \DateTime('2001-01-01 01:01:01', new \DateTimeZone('Europe/Paris')));
* DateTime::from('2001-01-01 01:01:01', 'Europe/Paris');
* DateTime::from('now');
* </pre>
*
* @param mixed $source
* @param mixed $timezone The time zone to use to create the time. The value is ignored if the
* source is an instance of {@link \DateTime}.
*/
static public function from($source, $timezone = null): self
{
if ($source instanceof static)
{
return clone $source;
}
if ($source instanceof \DateTime)
{
return new static($source->format('Y-m-d\TH:i:s.u'), $source->getTimezone());
}
return new static($source, $timezone);
}
/**
* Returns an instance with the current local time and the local time zone.
*
* **Note:** Subsequent calls return equal times, event if they are minutes apart. _now_
* actually refers to the `REQUEST_TIME` or, if it is now available, to the first time
* the method was invoked.
*/
static public function now(): self
{
static $now;
if (!$now)
{
$now = empty($_SERVER['REQUEST_TIME']) ? new static : (new static('@' . $_SERVER['REQUEST_TIME']))->local;
}
return clone $now;
}
/**
* Returns an instance with the current local time and the local time zone.
*
* **Note:** Subsequent calls may return different times.
*/
static public function right_now(): self
{
return new static;
}
/**
* Returns an instance representing an empty date ("0000-00-00").
*
* <pre>
* <?php
*
* use ICanBoogie\DateTime;
*
* $d = DateTime::none();
* $d->is_empty; // true
* $d->zone->name; // "UTC"
*
* $d = DateTime::none('Asia/Tokyo');
* $d->is_empty; // true
* $d->zone->name; // "Asia/Tokio"
* </pre>
*
* @param DateTimeZone|string $timezone The time zone in which the empty date is created.
* Defaults to "UTC".
*
* @return DateTime
*/
static public function none($timezone = 'utc'): self
{
return new static('0000-00-00', $timezone);
}
/**
* If the time zone is specified as a string a {@link \DateTimeZone} instance is created and
* used instead.
*
* <pre>
* <?php
*
* use ICanBoogie\DateTime;
*
* new DateTime('2001-01-01 01:01:01', new \DateTimeZone('Europe/Paris')));
* new DateTime('2001-01-01 01:01:01', 'Europe/Paris');
* new DateTime;
* </pre>
*
* @param DateTimeZone|string|null $timezone
*/
public function __construct(string $time = 'now', $timezone = null)
{
if (is_string($timezone))
{
$timezone = new DateTimeZone($timezone);
}
parent::__construct($time, $timezone);
}
/**
* @inheritdoc
*/
public function __get($property)
{
if (strpos($property, 'as_') === 0)
{
return $this->{ 'format_' . $property }();
}
switch ($property)
{
case 'timestamp':
return $this->getTimestamp();
case 'year':
return (int) $this->format('Y');
case 'quarter':
return floor(($this->month - 1) / 3) + 1;
case 'month':
return (int) $this->format('m');
case 'week':
return (int) $this->format('W');
case 'year_day':
return (int) $this->format('z') + 1;
case 'weekday':
return (int) $this->format('w') ?: 7;
case 'day':
return (int) $this->format('d');
case 'hour':
return (int) $this->format('H');
case 'minute':
return (int) $this->format('i');
case 'second':
return (int) $this->format('s');
case 'is_monday':
return $this->weekday == 1;
case 'is_tuesday':
return $this->weekday == 2;
case 'is_wednesday':
return $this->weekday == 3;
case 'is_thursday':
return $this->weekday == 4;
case 'is_friday':
return $this->weekday == 5;
case 'is_saturday':
return $this->weekday == 6;
case 'is_sunday':
return $this->weekday == 7;
case 'is_today':
$now = new static('now', $this->zone);
return $this->as_date === $now->as_date;
case 'is_past':
return $this < new static('now', $this->zone);
case 'is_future':
return $this > new static('now', $this->zone);
case 'is_empty':
return $this->year == -1 && $this->month == 11 && $this->day == 30;
case 'tomorrow':
$time = clone $this;
$time->modify('+1 day');
$time->setTime(0, 0, 0);
return $time;
case 'yesterday':
$time = clone $this;
$time->modify('-1 day');
$time->setTime(0, 0, 0);
return $time;
/**
* days
*
* @uses get_monday
* @uses get_tuesday
* @uses get_wednesday
* @uses get_thursday
* @uses get_friday
* @uses get_saturday
* @uses get_sunday
*/
case 'monday':
case 'tuesday':
case 'wednesday':
case 'thursday':
case 'friday':
case 'saturday':
case 'sunday':
return $this->{ 'get_' . $property }();
case 'zone':
return TimeZone::from($this->getTimezone());
case 'utc':
case 'local':
$time = clone $this;
$time->setTimezone($property);
return $time;
case 'is_utc':
return $this->zone->name == 'UTC';
case 'is_local':
return $this->zone->name == date_default_timezone_get();
case 'is_dst':
$timestamp = $this->timestamp;
$transitions = $this->zone->getTransitions($timestamp, $timestamp);
return $transitions[0]['isdst'];
}
if (class_exists(PropertyNotDefined::class))
{
throw new PropertyNotDefined([ $property, $this ]);
}
else
{
throw new RuntimeException("Property is not defined: $property.");
}
}
/**
* Returns Monday of the week.
*/
private function get_monday(): self
{
$time = clone $this;
$day = $time->weekday;
if ($day != 1)
{
$time->modify('-' . ($day - 1) . ' day');
}
$time->setTime(0, 0, 0);
return $time;
}
/**
* Returns Tuesday of the week.
*/
private function get_tuesday(): self
{
return $this->monday->modify('+1 day');
}
/**
* Returns Wednesday of the week.
*/
private function get_wednesday(): self
{
return $this->monday->modify('+2 day');
}
/**
* Returns Thursday of the week.
*/
private function get_thursday(): self
{
return $this->monday->modify('+3 day');
}
/**
* Returns Friday of the week.
*/
private function get_friday(): self
{
return $this->monday->modify('+4 day');
}
/**
* Returns Saturday of the week.
*/
private function get_saturday(): self
{
return $this->monday->modify('+5 day');
}
/**
* Returns Sunday of the week.
*/
private function get_sunday(): self
{
$time = clone $this;
$day = $time->weekday;
if ($day != 7)
{
$time->modify('+' . (7 - $day) . ' day');
}
$time->setTime(0, 0, 0);
return $time;
}
/**
* Sets the {@link $year}, {@link $month}, {@link $day}, {@link $hour}, {@link $minute},
* {@link $second}, {@link $timestamp} and {@link $zone} properties.
*
* @throws PropertyNotWritable in attempt to set a read-only property.
* @throws PropertyNotDefined in attempt to set an unsupported property.
*
* @inheritdoc
*/
public function __set($property, $value): void
{
static $readonly = [
'quarter', 'week', 'year_day', 'weekday',
'tomorrow', 'yesterday', 'utc', 'local'
];
switch ($property)
{
case 'year':
case 'month':
case 'day':
case 'hour':
case 'minute':
case 'second':
$this->change([ $property => $value ]);
return;
case 'timestamp':
$this->setTimestamp($value);
return;
case 'zone':
$this->setTimezone($value);
return;
}
if (strpos($property, 'is_') === 0 || strpos($property, 'as_') === 0 || in_array($property, $readonly) || method_exists($this, 'get_' . $property))
{
if (class_exists(PropertyNotWritable::class))
{
throw new PropertyNotWritable([ $property, $this ]);
}
else
{
throw new RuntimeException("Property is not writeable: $property.");
}
}
if (class_exists(PropertyNotDefined::class))
{
throw new PropertyNotDefined([ $property, $this ]);
}
else
{
throw new RuntimeException("Property is not defined: $property.");
}
}
/**
* Handles the `format_as_*` methods.
*
* If the format is {@link RFC822} or {@link RFC1123} and the time zone is equivalent to GMT,
* the offset `+0000` is replaced by `GMT` according to the specs.
*
* If the format is {@link ISO8601} and the time zone is equivalent to UTC, the offset `+0000`
* is replaced by `Z` according to the specs.
*
* @throws \BadMethodCallException in attempt to call an unsupported method.
*
* @inheritdoc
*/
public function __call($method, $arguments)
{
if (strpos($method, 'format_as_') !== 0)
{
throw new \BadMethodCallException("Unsupported method: $method.");
}
$as = strtoupper(substr($method, strlen('format_as_')));
$format = constant(__CLASS__ . '::' . $as);
$value = $this->format($format);
switch ($as)
{
case 'RFC822':
case 'RFC1123':
return str_replace('+0000', 'GMT', $value);
case 'ISO8601':
return str_replace('+0000', 'Z', $value);
default:
return $value;
}
}
/**
* Returns the datetime formatted as {@link ISO8601}.
*
* @return string The instance rendered as an {@link ISO8601} string, or an empty string if the
* datetime is empty.
*/
public function __toString(): string
{
return $this->is_empty ? "" : $this->as_iso8601;
}
/**
* Returns a {@link ISO8601} representation of the instance.
*/
public function jsonSerialize(): string
{
return (string) $this;
}
/**
* The timezone can be specified as a string.
*
* If the timezone is `local` the timezone returned by {@link date_default_timezone_get()} is
* used instead.
*
* @inheritdoc
*/
public function setTimezone($timezone): self
{
if ($timezone === 'local')
{
$timezone = date_default_timezone_get();
}
if (!$timezone instanceof DateTimeZone)
{
$timezone = new DateTimeZone($timezone);
}
return parent::setTimezone($timezone);
}
/**
* Modifies the properties of the instance according to the options.
*
* The following properties can be updated: {@link $year}, {@link $month}, {@link $day},
* {@link $hour}, {@link $minute} and {@link $second}.
*
* Note: Values exceeding ranges are added to their parent values.
*
* <pre>
* <?php
*
* use ICanBoogie\DateTime;
*
* $time = new DateTime('now');
* $time->change([ 'year' => 2000, 'second' => 0 ]);
* </pre>
*
* @param array{ year: int, month: int, day: int, hour: int, minute: int, second: int, timezone: string } $options
* @param bool $cascade If `true`, time options (`hour`, `minute`, `second`) reset
* cascading, so if only the hour is passed, then minute and second is set to 0. If the hour
* and minute is passed, then second is set to 0.
*/
public function change(array $options, bool $cascade = false): self
{
static $default_options = [
'year' => null,
'month' => null,
'day' => null,
'hour' => null,
'minute' => null,
'second' => null,
'timezone' => null,
];
$options = array_intersect_key($options + $default_options, $default_options);
$year = null;
$month = null;
$day = null;
$hour = null;
$minute = null;
$second = null;
$timezone = null;
extract($options);
if ($timezone !== null)
{
$this->setTimezone($timezone);
}
if ($cascade)
{
if ($hour !== null && $minute === null)
{
$minute = 0;
}
if ($minute !== null && $second === null)
{
$second = 0;
}
}
if ($year !== null || $month !== null || $day !== null)
{
$this->setDate
(
$year === null ? $this->year : $year,
$month === null ? $this->month : $month,
$day === null ? $this->day : $day
);
}
if ($hour !== null || $minute !== null || $second !== null)
{
$this->setTime
(
$hour === null ? $this->hour : $hour,
$minute === null ? $this->minute : $minute,
$second === null ? $this->second : $second
);
}
return $this;
}
/**
* Instantiate a new instance with changes properties.
*
* @param array{ year: int, month: int, day: int, hour: int, minute: int, second: int, timezone: string } $options
* @param bool $cascade If `true`, time options (`hour`, `minute`, `second`) reset
* cascading, so if only the hour is passed, then minute and second is set to 0. If the hour
* and minute is passed, then second is set to 0.
*/
public function with(array $options, bool $cascade = false): self
{
$dt = clone $this;
return $dt->change($options, $cascade);
}
/**
* If the instance represents an empty date and the format is {@link DATE} or {@link DB},
* an empty date is returned, respectively "0000-00-00" and "0000-00-00 00:00:00". Note that
* the time information is discarded for {@link DB}. This only apply to {@link DATE} and
* {@link DB} formats. For instance {@link RSS} will return the following string:
* "Wed, 30 Nov -0001 00:00:00 +0000".
*
* @inheritdoc
*/
public function format($format): string
{
if (($format == self::DATE || $format == self::DB) && $this->is_empty)
{
return $format == self::DATE ? '0000-00-00' : '0000-00-00 00:00:00';
}
return parent::format($format);
}
/**
* Returns a localized instance.
*
* @return mixed
*
* @throws RuntimeException if {@link $localizer} is not defined.
*/
public function localize(string $locale = 'en')
{
$localizer = self::$localizer;
if (!$localizer)
{
throw new RuntimeException("Localizer is not defined yet.");
}
return $localizer($this, $locale);
}
}