-
Notifications
You must be signed in to change notification settings - Fork 825
Expand file tree
/
Copy pathdate_c.php
More file actions
1203 lines (1056 loc) · 38.7 KB
/
Copy pathdate_c.php
File metadata and controls
1203 lines (1056 loc) · 38.7 KB
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
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?php
use JetBrains\PhpStorm\ArrayShape;
use JetBrains\PhpStorm\Immutable;
use JetBrains\PhpStorm\Internal\LanguageLevelTypeAware;
use JetBrains\PhpStorm\Internal\PhpStormStubsElementAvailable;
use JetBrains\PhpStorm\Internal\TentativeType;
use JetBrains\PhpStorm\Pure;
/**
* @since 5.5
*/
interface DateTimeInterface
{
/**
* @since 7.2
*/
public const ATOM = 'Y-m-d\TH:i:sP';
/**
* @since 7.2
*/
public const COOKIE = 'l, d-M-Y H:i:s T';
/**
* This format is not compatible with ISO-8601, but is left this way for backward compatibility reasons.
* Use DateTime::ATOM or DATE_ATOM for compatibility with ISO-8601 instead.
* @since 7.2
* @deprecated
*/
public const ISO8601 = 'Y-m-d\TH:i:sO';
/**
* @since 8.2
*/
public const ISO8601_EXPANDED = DATE_ISO8601_EXPANDED;
/**
* @since 7.2
*/
public const RFC822 = 'D, d M y H:i:s O';
/**
* @since 7.2
*/
public const RFC850 = 'l, d-M-y H:i:s T';
/**
* @since 7.2
*/
public const RFC1036 = 'D, d M y H:i:s O';
/**
* @since 7.2
*/
public const RFC1123 = 'D, d M Y H:i:s O';
/**
* @since 7.2
*/
public const RFC2822 = 'D, d M Y H:i:s O';
/**
* @since 7.2
*/
public const RFC3339 = 'Y-m-d\TH:i:sP';
/**
* @since 7.2
*/
public const RFC3339_EXTENDED = 'Y-m-d\TH:i:s.vP';
/**
* @since 7.2
*/
public const RFC7231 = 'D, d M Y H:i:s \G\M\T';
/**
* @since 7.2
*/
public const RSS = 'D, d M Y H:i:s O';
/**
* @since 7.2
*/
public const W3C = 'Y-m-d\TH:i:sP';
/* Methods */
/**
* (PHP 5 >=5.5.0)<br/>
* Returns the difference between two DateTime objects
* @link https://secure.php.net/manual/en/datetime.diff.php
* @param DateTimeInterface $targetObject <p>The date to compare to.</p>
* @param bool $absolute <p>Should the interval be forced to be positive?</p>
* @return DateInterval
* The https://secure.php.net/manual/en/class.dateinterval.php DateInterval} object representing the
* difference between the two dates.
*/
#[TentativeType]
public function diff(
DateTimeInterface $targetObject,
#[LanguageLevelTypeAware(['8.0' => 'bool'], default: '')] $absolute = false
): DateInterval;
/**
* (PHP 5 >=5.5.0)<br/>
* Returns date formatted according to given format
* @link https://secure.php.net/manual/en/datetime.format.php
* @param string $format <p>
* Format accepted by {@link https://secure.php.net/manual/en/function.date.php date()}.
* </p>
* @return string
* Returns the formatted date string on success or <b>FALSE</b> on failure.
* Since PHP8, it always returns <b>STRING</b>.
*/
#[TentativeType]
public function format(#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $format): string;
/**
* (PHP 5 >=5.5.0)<br/>
* Returns the timezone offset
* @return int|false
* Returns the timezone offset in seconds from UTC on success
* or <b>FALSE</b> on failure. Since PHP8, it always returns <b>INT</b>.
*/
#[LanguageLevelTypeAware(["8.0" => "int"], default: "int|false")]
#[TentativeType]
public function getOffset(): int;
/**
* (PHP 5 >=5.5.0)<br/>
* Gets the Unix timestamp
* @return int
* Returns the Unix timestamp representing the date.
*/
#[TentativeType]
#[LanguageLevelTypeAware(['8.1' => 'int'], default: 'int|false')]
public function getTimestamp();
/**
* (PHP 5 >=5.5.0)<br/>
* Return time zone relative to given DateTime
* @link https://secure.php.net/manual/en/datetime.gettimezone.php
* @return DateTimeZone|false
* Returns a {@link https://secure.php.net/manual/en/class.datetimezone.php DateTimeZone} object on success
* or <b>FALSE</b> on failure.
*/
#[TentativeType]
public function getTimezone(): DateTimeZone|false;
/**
* (PHP 5 >=5.5.0)<br/>
* The __wakeup handler
* @link https://secure.php.net/manual/en/datetime.wakeup.php
* @return void Initializes a DateTime object.
*/
#[TentativeType]
public function __wakeup(): void;
#[PhpStormStubsElementAvailable(from: '8.2')]
public function __serialize(): array;
#[PhpStormStubsElementAvailable(from: '8.2')]
public function __unserialize(array $data): void;
/**
* @since 8.4
*/
public function getMicrosecond(): int;
/**
* @since 8.4
*/
public function setMicrosecond();
}
/**
* @since 5.5
*/
class DateTimeImmutable implements DateTimeInterface
{
/* Methods */
/**
* (PHP 5 >=5.5.0)<br/>
* @link https://secure.php.net/manual/en/datetimeimmutable.construct.php
* @param string $datetime [optional]
* <p>A date/time string. Valid formats are explained in {@link https://secure.php.net/manual/en/datetime.formats.php Date and Time Formats}.</p>
* <p>Enter <b>NULL</b> here to obtain the current time when using the <em>$timezone</em> parameter.</p>
* @param null|DateTimeZone $timezone [optional] <p>
* A {@link https://secure.php.net/manual/en/class.datetimezone.php DateTimeZone} object representing the timezone of <em>$datetime</em>.
* </p>
* <p>If <em>$timezone</em> is omitted, the current timezone will be used.</p>
* <blockquote><p><b>Note</b>:</p><p>
* The <em>$timezone</em> parameter and the current timezone are ignored when the <em>$datetime</em> parameter either
* is a UNIX timestamp (e.g. <em>@946684800</em>) or specifies a timezone (e.g. <em>2010-01-28T15:00:00+02:00</em>).
* </p></blockquote>
* @throws DateMalformedStringException Emits Exception in case of an error.
*/
public function __construct(
#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $datetime = "now",
#[LanguageLevelTypeAware(['8.0' => 'DateTimeZone|null'], default: 'DateTimeZone')] $timezone = null
) {}
/**
* (PHP 5 >=5.5.0)<br/>
* Adds an amount of days, months, years, hours, minutes and seconds
* @param DateInterval $interval
* @return static
* @link https://secure.php.net/manual/en/datetimeimmutable.add.php
*/
#[TentativeType]
public function add(DateInterval $interval): DateTimeImmutable {}
/**
* (PHP 5 >=5.5.0)<br/>
* Returns new DateTimeImmutable object formatted according to the specified format
* @link https://secure.php.net/manual/en/datetimeimmutable.createfromformat.php
* @param string $format
* @param string $datetime
* @param null|DateTimeZone $timezone [optional]
* @return DateTimeImmutable|false
*/
#[TentativeType]
public static function createFromFormat(
#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $format,
#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $datetime,
#[LanguageLevelTypeAware(['8.0' => 'DateTimeZone|null'], default: 'DateTimeZone')] $timezone = null
): DateTimeImmutable|false {}
/**
* (PHP 5 >=5.6.0)<br/>
* Returns new DateTimeImmutable object encapsulating the given DateTime object
* @link https://secure.php.net/manual/en/datetimeimmutable.createfrommutable.php
* @param DateTime $object The mutable DateTime object that you want to convert to an immutable version. This object is not modified, but instead a new DateTimeImmutable object is created containing the same date time and timezone information.
* @return DateTimeImmutable returns a new DateTimeImmutable instance.
*/
#[TentativeType]
#[LanguageLevelTypeAware(['8.2' => 'static'], default: 'DateTimeImmutable')]
public static function createFromMutable(DateTime $object) {}
/**
* (PHP 5 >=5.5.0)<br/>
* Returns the warnings and errors
* @link https://secure.php.net/manual/en/datetimeimmutable.getlasterrors.php
* @return array|false Returns array containing info about warnings and errors.
*/
#[ArrayShape(["warning_count" => "int", "warnings" => "string[]", "error_count" => "int", "errors" => "string[]"])]
#[TentativeType]
public static function getLastErrors(): array|false {}
/**
* (PHP 5 >=5.5.0)<br/>
* Alters the timestamp
* @link https://secure.php.net/manual/en/datetimeimmutable.modify.php
* @param string $modifier <p>A date/time string. Valid formats are explained in
* {@link https://secure.php.net/manual/en/datetime.formats.php Date and Time Formats}.</p>
* @return static|false Returns the newly created object or false on failure.
* @throws DateMalformedStringException
* Returns the {@link https://secure.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or <b>FALSE</b> on failure.
*/
#[Pure]
#[TentativeType]
#[LanguageLevelTypeAware(['8.4' => 'DateTimeImmutable'], default: 'DateTimeImmutable|false')]
public function modify(#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $modifier) {}
/**
* (PHP 5 >=5.5.0)<br/>
* The __set_state handler
* @link https://secure.php.net/manual/en/datetimeimmutable.set-state.php
* @param array $array <p>Initialization array.</p>
* @return DateTimeImmutable
* Returns a new instance of a {@link https://secure.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object.
*/
public static function __set_state(array $array) {}
/**
* (PHP 5 >=5.5.0)<br/>
* Sets the date
* @link https://secure.php.net/manual/en/datetimeimmutable.setdate.php
* @param int $year <p>Year of the date.</p>
* @param int $month <p>Month of the date.</p>
* @param int $day <p>Day of the date.</p>
* @return static|false
* Returns the {@link https://secure.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or <b>FALSE</b> on failure.
*/
#[TentativeType]
public function setDate(
#[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $year,
#[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $month,
#[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $day
): DateTimeImmutable {}
/**
* (PHP 5 >=5.5.0)<br/>
* Sets the ISO date
* @link https://php.net/manual/en/class.datetimeimmutable.php
* @param int $year <p>Year of the date.</p>
* @param int $week <p>Week of the date.</p>
* @param int $dayOfWeek [optional] <p>Offset from the first day of the week.</p>
* @return static|false
* Returns the {@link https://secure.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or <b>FALSE</b> on failure.
*/
#[TentativeType]
public function setISODate(
#[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $year,
#[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $week,
#[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $dayOfWeek = 1
): DateTimeImmutable {}
/**
* (PHP 5 >=5.5.0)<br/>
* Sets the time
* @link https://secure.php.net/manual/en/datetimeimmutable.settime.php
* @param int $hour <p> Hour of the time. </p>
* @param int $minute <p> Minute of the time. </p>
* @param int $second [optional] <p> Second of the time. </p>
* @param int $microsecond [optional] <p> Microseconds of the time. Added since 7.1</p>
* @return static|false
* Returns the {@link https://secure.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or <b>FALSE</b> on failure.
*/
#[TentativeType]
public function setTime(
#[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $hour,
#[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $minute,
#[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $second = 0,
#[PhpStormStubsElementAvailable(from: '7.1')] #[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $microsecond = 0
): DateTimeImmutable {}
/**
* (PHP 5 >=5.5.0)<br/>
* Sets the date and time based on an Unix timestamp
* @link https://secure.php.net/manual/en/datetimeimmutable.settimestamp.php
* @param int $timestamp <p>Unix timestamp representing the date.</p>
* @return static
* Returns the {@link https://secure.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or <b>FALSE</b> on failure.
*/
#[TentativeType]
public function setTimestamp(#[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $timestamp): DateTimeImmutable {}
/**
* (PHP 5 >=5.5.0)<br/>
* Sets the time zone
* @link https://secure.php.net/manual/en/datetimeimmutable.settimezone.php
* @param DateTimeZone $timezone <p>
* A {@link https://secure.php.net/manual/en/class.datetimezone.php DateTimeZone} object representing the
* desired time zone.
* </p>
* @return static
* Returns the {@link https://secure.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or <b>FALSE</b> on failure.
*/
#[TentativeType]
public function setTimezone(DateTimeZone $timezone): DateTimeImmutable {}
/**
* (PHP 5 >=5.5.0)<br/>
* Subtracts an amount of days, months, years, hours, minutes and seconds
* @link https://secure.php.net/manual/en/datetimeimmutable.sub.php
* @param DateInterval $interval <p>
* A {@link https://secure.php.net/manual/en/class.dateinterval.php DateInterval} object
* </p>
* @return static
* @throws DateInvalidOperationException
* Returns the {@link https://secure.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or <b>FALSE</b> on failure.
*/
#[TentativeType]
public function sub(DateInterval $interval): DateTimeImmutable {}
/**
* (PHP 5 >=5.5.0)<br/>
* Returns the difference between two DateTime objects
* @link https://secure.php.net/manual/en/datetime.diff.php
* @param DateTimeInterface $targetObject <p>The date to compare to.</p>
* @param bool $absolute [optional] <p>Should the interval be forced to be positive?</p>
* @return DateInterval|false
* The {@link https://secure.php.net/manual/en/class.dateinterval.php DateInterval} object representing the
* difference between the two dates or <b>FALSE</b> on failure.
*/
#[TentativeType]
public function diff(
#[LanguageLevelTypeAware(['8.0' => 'DateTimeInterface'], default: '')] $targetObject,
#[LanguageLevelTypeAware(['8.0' => 'bool'], default: '')] $absolute = false
): DateInterval {}
/**
* (PHP 5 >=5.5.0)<br/>
* Returns date formatted according to given format
* @link https://secure.php.net/manual/en/datetime.format.php
* @param string $format <p>
* Format accepted by {@link https://secure.php.net/manual/en/function.date.php date()}.
* </p>
* @return string
* Returns the formatted date string on success or <b>FALSE</b> on failure.
*/
#[TentativeType]
public function format(#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $format): string {}
/**
* (PHP 5 >=5.5.0)<br/>
* Returns the timezone offset
* @return int
* Returns the timezone offset in seconds from UTC on success
* or <b>FALSE</b> on failure.
*/
#[TentativeType]
public function getOffset(): int {}
/**
* (PHP 5 >=5.5.0)<br/>
* Gets the Unix timestamp
* @return int
* Returns the Unix timestamp representing the date.
*/
#[TentativeType]
public function getTimestamp(): int {}
/**
* (PHP 5 >=5.5.0)<br/>
* Return time zone relative to given DateTime
* @link https://secure.php.net/manual/en/datetime.gettimezone.php
* @return DateTimeZone|false
* Returns a {@link https://secure.php.net/manual/en/class.datetimezone.php DateTimeZone} object on success
* or <b>FALSE</b> on failure.
*/
#[TentativeType]
public function getTimezone(): DateTimeZone|false {}
/**
* (PHP 5 >=5.5.0)<br/>
* The __wakeup handler
* @link https://secure.php.net/manual/en/datetime.wakeup.php
* @return void Initializes a DateTime object.
*/
#[TentativeType]
public function __wakeup(): void {}
/**
* @param DateTimeInterface $object
* @return DateTimeImmutable
* @since 8.0
*/
public static function createFromInterface(DateTimeInterface $object): DateTimeImmutable {}
#[PhpStormStubsElementAvailable(from: '8.2')]
public function __serialize(): array {}
#[PhpStormStubsElementAvailable(from: '8.2')]
public function __unserialize(array $data): void {}
/**
* @since 8.4
*/
#[TentativeType]
public static function createFromTimestamp(int|float $timestamp): static {}
/**
* @since 8.4
*/
public function getMicrosecond(): int {}
/**
* @since 8.4
*/
public function setMicrosecond(int $microsecond): static {}
}
/**
* Representation of date and time.
* @link https://php.net/manual/en/class.datetime.php
*/
class DateTime implements DateTimeInterface
{
/**
* @removed 7.2
*/
public const ATOM = 'Y-m-d\TH:i:sP';
/**
* @removed 7.2
*/
public const COOKIE = 'l, d-M-Y H:i:s T';
/**
* @removed 7.2
*/
public const ISO8601 = 'Y-m-d\TH:i:sO';
/**
* @removed 7.2
*/
public const RFC822 = 'D, d M y H:i:s O';
/**
* @removed 7.2
*/
public const RFC850 = 'l, d-M-y H:i:s T';
/**
* @removed 7.2
*/
public const RFC1036 = 'D, d M y H:i:s O';
/**
* @removed 7.2
*/
public const RFC1123 = 'D, d M Y H:i:s O';
/**
* @removed 7.2
*/
public const RFC2822 = 'D, d M Y H:i:s O';
/**
* @removed 7.2
*/
public const RFC3339 = 'Y-m-d\TH:i:sP';
/**
* @removed 7.2
*/
public const RFC3339_EXTENDED = 'Y-m-d\TH:i:s.vP';
/**
* @removed 7.2
*/
public const RFC7231 = 'D, d M Y H:i:s \G\M\T';
/**
* @removed 7.2
*/
public const RSS = 'D, d M Y H:i:s O';
/**
* @removed 7.2
*/
public const W3C = 'Y-m-d\TH:i:sP';
/**
* (PHP 5 >=5.2.0)<br/>
* @link https://php.net/manual/en/datetime.construct.php
* @param string $datetime [optional]
* <p>A date/time string. Valid formats are explained in {@link https://php.net/manual/en/datetime.formats.php Date and Time Formats}.</p>
* <p>
* Enter <b>now</b> here to obtain the current time when using
* the <em>$timezone</em> parameter.
* </p>
* @param null|DateTimeZone $timezone [optional] <p>
* A {@link https://php.net/manual/en/class.datetimezone.php DateTimeZone} object representing the
* timezone of <em>$datetime</em>.
* </p>
* <p>
* If <em>$timezone</em> is omitted,
* the current timezone will be used.
* </p>
* <blockquote><p><b>Note</b>:
* </p><p>
* The <em>$timezone</em> parameter
* and the current timezone are ignored when the
* <em>$time</em> parameter either
* is a UNIX timestamp (e.g. <em>@946684800</em>)
* or specifies a timezone
* (e.g. <em>2010-01-28T15:00:00+02:00</em>).
* </p> <p></p></blockquote>
* @throws DateMalformedStringException Emits Exception in case of an error.
*/
public function __construct(
#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $datetime = 'now',
#[LanguageLevelTypeAware(['8.0' => 'DateTimeZone|null'], default: 'DateTimeZone')] $timezone = null
) {}
/**
* @return void
* @link https://php.net/manual/en/datetime.wakeup.php
*/
#[TentativeType]
public function __wakeup(): void {}
/**
* Returns date formatted according to given format.
* @param string $format
* @return string
* @link https://php.net/manual/en/datetime.format.php
*/
#[TentativeType]
public function format(#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $format): string {}
/**
* Alter the timestamp of a DateTime object by incrementing or decrementing
* in a format accepted by strtotime().
* @param string $modifier A date/time string. Valid formats are explained in <a href="https://secure.php.net/manual/en/datetime.formats.php">Date and Time Formats</a>.
* @return static|false Returns the DateTime object for method chaining or FALSE on failure.
* @throws DateMalformedStringException
* @link https://php.net/manual/en/datetime.modify.php
*/
#[TentativeType]
#[LanguageLevelTypeAware(['8.4' => 'DateTime'], default: 'DateTime|false')]
public function modify(#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $modifier) {}
/**
* Adds an amount of days, months, years, hours, minutes and seconds to a DateTime object
* @param DateInterval $interval
* @return static
* @link https://php.net/manual/en/datetime.add.php
*/
#[TentativeType]
public function add(DateInterval $interval): DateTime {}
/**
* @param DateTimeImmutable $object
* @return DateTime
* @since 7.3
*/
#[TentativeType]
#[LanguageLevelTypeAware(['8.2' => 'static'], default: 'DateTime')]
public static function createFromImmutable(DateTimeImmutable $object) {}
/**
* Subtracts an amount of days, months, years, hours, minutes and seconds from a DateTime object
* @param DateInterval $interval
* @return static
* @link https://php.net/manual/en/datetime.sub.php
* @throws DateInvalidOperationException
*/
#[TentativeType]
public function sub(DateInterval $interval): DateTime {}
/**
* Get the TimeZone associated with the DateTime
* @return DateTimeZone|false
* @link https://php.net/manual/en/datetime.gettimezone.php
*/
#[TentativeType]
public function getTimezone(): DateTimeZone|false {}
/**
* Set the TimeZone associated with the DateTime
* @param DateTimeZone $timezone
* @return static
* @link https://php.net/manual/en/datetime.settimezone.php
*/
#[TentativeType]
public function setTimezone(#[LanguageLevelTypeAware(['8.0' => 'DateTimeZone'], default: '')] $timezone): DateTime {}
/**
* Returns the timezone offset
* @return int
* @link https://php.net/manual/en/datetime.getoffset.php
*/
#[TentativeType]
public function getOffset(): int {}
/**
* Sets the current time of the DateTime object to a different time.
* @param int $hour
* @param int $minute
* @param int $second
* @param int $microsecond Added since 7.1
* @return static
* @link https://php.net/manual/en/datetime.settime.php
*/
#[TentativeType]
public function setTime(
#[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $hour,
#[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $minute,
#[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $second = 0,
#[PhpStormStubsElementAvailable(from: '7.1')] #[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $microsecond = 0
): DateTime {}
/**
* Sets the current date of the DateTime object to a different date.
* @param int $year
* @param int $month
* @param int $day
* @return static
* @link https://php.net/manual/en/datetime.setdate.php
*/
#[TentativeType]
public function setDate(
#[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $year,
#[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $month,
#[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $day
): DateTime {}
/**
* Set a date according to the ISO 8601 standard - using weeks and day offsets rather than specific dates.
* @param int $year
* @param int $week
* @param int $dayOfWeek
* @return static
* @link https://php.net/manual/en/datetime.setisodate.php
*/
#[TentativeType]
public function setISODate(
#[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $year,
#[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $week,
#[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $dayOfWeek = 1
): DateTime {}
/**
* Sets the date and time based on a Unix timestamp.
* @param int $timestamp
* @return static
* @link https://php.net/manual/en/datetime.settimestamp.php
*/
#[TentativeType]
public function setTimestamp(#[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $timestamp): DateTime {}
/**
* Gets the Unix timestamp.
* @return int
* @link https://php.net/manual/en/datetime.gettimestamp.php
*/
#[TentativeType]
public function getTimestamp(): int {}
/**
* Returns the difference between two DateTime objects represented as a DateInterval.
* @param DateTimeInterface $targetObject The date to compare to.
* @param bool $absolute [optional] Whether to return absolute difference.
* @return DateInterval|false The DateInterval object representing the difference between the two dates.
* @link https://php.net/manual/en/datetime.diff.php
*/
#[TentativeType]
public function diff(
#[LanguageLevelTypeAware(['8.0' => 'DateTimeInterface'], default: '')] $targetObject,
#[LanguageLevelTypeAware(['8.0' => 'bool'], default: '')] $absolute = false
): DateInterval {}
/**
* Parse a string into a new DateTime object according to the specified format
* @param string $format Format accepted by date().
* @param string $datetime String representing the time.
* @param null|DateTimeZone $timezone A DateTimeZone object representing the desired time zone.
* @return DateTime|false
* @link https://php.net/manual/en/datetime.createfromformat.php
*/
#[TentativeType]
public static function createFromFormat(
#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $format,
#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $datetime,
#[LanguageLevelTypeAware(['8.0' => 'DateTimeZone|null'], default: 'DateTimeZone')] $timezone = null
): DateTime|false {}
/**
* Returns an array of warnings and errors found while parsing a date/time string
* @return array|false
* @link https://php.net/manual/en/datetime.getlasterrors.php
*/
#[ArrayShape(["warning_count" => "int", "warnings" => "string[]", "error_count" => "int", "errors" => "string[]"])]
#[TentativeType]
public static function getLastErrors(): array|false {}
/**
* The __set_state handler
* @link https://php.net/manual/en/datetime.set-state.php
* @param array $array <p>Initialization array.</p>
* @return DateTime <p>Returns a new instance of a DateTime object.</p>
*/
public static function __set_state($array) {}
/**
* @param DateTimeInterface $object
* @return DateTime
* @since 8.0
*/
public static function createFromInterface(DateTimeInterface $object): DateTime {}
#[PhpStormStubsElementAvailable(from: '8.2')]
public function __serialize(): array {}
#[PhpStormStubsElementAvailable(from: '8.2')]
public function __unserialize(array $data): void {}
/**
* @since 8.4
*/
#[TentativeType]
public static function createFromTimestamp(int|float $timestamp): static {}
/**
* @since 8.4
*/
public function getMicrosecond(): int {}
/**
* @since 8.4
*/
public function setMicrosecond(int $microsecond): static {}
}
/**
* Representation of time zone
* @link https://php.net/manual/en/class.datetimezone.php
*/
class DateTimeZone
{
public const AFRICA = 1;
public const AMERICA = 2;
public const ANTARCTICA = 4;
public const ARCTIC = 8;
public const ASIA = 16;
public const ATLANTIC = 32;
public const AUSTRALIA = 64;
public const EUROPE = 128;
public const INDIAN = 256;
public const PACIFIC = 512;
public const UTC = 1024;
public const ALL = 2047;
public const ALL_WITH_BC = 4095;
public const PER_COUNTRY = 4096;
/**
* @param string $timezone
* @link https://php.net/manual/en/datetimezone.construct.php
* @throws DateInvalidTimeZoneException Emits Exception in case of an error.
*/
public function __construct(#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $timezone) {}
/**
* Returns the name of the timezone
* @return string
* @link https://php.net/manual/en/datetimezone.getname.php
*/
#[TentativeType]
public function getName(): string {}
/**
* Returns location information for a timezone
* @return array|false
* @link https://php.net/manual/en/datetimezone.getlocation.php
*/
#[TentativeType]
#[ArrayShape([
'country_code' => 'string',
'latitude' => 'double',
'longitude' => 'double',
'comments' => 'string',
])]
public function getLocation(): array|false {}
/**
* Returns the timezone offset from GMT
* @param DateTimeInterface $datetime
* @return int
* @link https://php.net/manual/en/datetimezone.getoffset.php
*/
#[TentativeType]
public function getOffset(DateTimeInterface $datetime): int {}
/**
* Returns all transitions for the timezone
* @param int $timestampBegin
* @param int $timestampEnd
* @return array|false
* @link https://php.net/manual/en/datetimezone.gettransitions.php
*/
#[TentativeType]
public function getTransitions(
#[PhpStormStubsElementAvailable(from: '5.3', to: '5.6')] $timestampBegin,
#[PhpStormStubsElementAvailable(from: '5.3', to: '5.6')] $timestampEnd,
#[PhpStormStubsElementAvailable(from: '7.0')] #[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $timestampBegin = PHP_INT_MIN,
#[PhpStormStubsElementAvailable(from: '7.0')] #[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $timestampEnd = PHP_INT_MAX
): array|false {}
/**
* Returns associative array containing dst, offset and the timezone name
* @return array<string, list<array{dst: bool, offset: int, timezone_id: string|null}>>
* @link https://php.net/manual/en/datetimezone.listabbreviations.php
*/
#[TentativeType]
public static function listAbbreviations(): array {}
/**
* Returns a numerically indexed array with all timezone identifiers
* @param int $timezoneGroup
* @param string $countryCode
* @return array|false Returns the array of timezone identifiers, or <b>FALSE</b> on failure. Since PHP8, always returns <b>array</b>.
* @link https://php.net/manual/en/datetimezone.listidentifiers.php
*/
#[LanguageLevelTypeAware(["8.0" => "array"], default: "array|false")]
#[TentativeType]
public static function listIdentifiers(
#[LanguageLevelTypeAware(['8.0' => 'int'], default: '')] $timezoneGroup = DateTimeZone::ALL,
#[LanguageLevelTypeAware(['8.0' => 'string|null'], default: '')] $countryCode = null
): array {}
/**
* @link https://php.net/manual/en/datetime.wakeup.php
*/
#[TentativeType]
public function __wakeup(): void {}
public static function __set_state($an_array) {}
#[PhpStormStubsElementAvailable(from: '8.2')]
public function __serialize(): array {}
#[PhpStormStubsElementAvailable(from: '8.2')]
public function __unserialize(array $data): void {}
}
/**
* Representation of date interval. A date interval stores either a fixed amount of
* time (in years, months, days, hours etc) or a relative time string in the format
* that DateTime's constructor supports.
* @link https://php.net/manual/en/class.dateinterval.php
*/
class DateInterval
{
/**
* Number of years
* @var int
*/
public $y;
/**
* Number of months
* @var int
*/
public $m;
/**
* Number of days
* @var int
*/
public $d;
/**
* Number of hours
* @var int
*/
public $h;
/**
* Number of minutes
* @var int
*/
public $i;
/**
* Number of seconds
* @var int
*/
public $s;
/**
* Number of microseconds
* @since 7.1.0
* @var float
*/
public $f;
/**
* Is 1 if the interval is inverted and 0 otherwise
* @var int
*/
public $invert;
/**
* Total number of days the interval spans. If this is unknown, days will be FALSE.
* @var int|false
*/
public $days;
/**
* @param string $duration
* @throws DateMalformedIntervalStringException when the $duration cannot be parsed as an interval.
* @link https://php.net/manual/en/dateinterval.construct.php
*/
public function __construct(#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $duration) {}
/**
* Formats the interval
* @param string $format
* @return string
* @link https://php.net/manual/en/dateinterval.format.php
*/
#[TentativeType]
public function format(#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $format): string {}
/**
* Sets up a DateInterval from the relative parts of the string
* @param string $datetime
* @return DateInterval|false Returns a new {@link https://www.php.net/manual/en/class.dateinterval.php DateInterval}
* instance on success, or <b>FALSE</b> on failure.
* @link https://php.net/manual/en/dateinterval.createfromdatestring.php
*/
#[TentativeType]
#[LanguageLevelTypeAware(['8.4' => 'DateInterval'], default: 'DateInterval|false')]
public static function createFromDateString(#[LanguageLevelTypeAware(['8.0' => 'string'], default: '')] $datetime) {}
#[TentativeType]
public function __wakeup(): void {}
public static function __set_state($an_array) {}
#[PhpStormStubsElementAvailable(from: '8.2')]
public function __serialize(): array {}
#[PhpStormStubsElementAvailable(from: '8.2')]
public function __unserialize(array $data): void {}