forked from JetBrains/phpstorm-stubs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
date_c.php
649 lines (573 loc) · 21.6 KB
/
date_c.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
<?php
interface DateTimeInterface {
/* Methods */
/**
* (PHP 5 >=5.5.0)<br/>
* Returns the difference between two DateTime objects
* @link http://www.php.net/manual/en/datetime.diff.php
* @param DateTimeInterface $datetime2 <p>The date to compare to.</p>
* @param bool $absolute <p>Should the interval be forced to be positive?</p>
* @return DateInterval
* The http://www.php.net/manual/en/class.dateinterval.php DateInterval} object representing the
* difference between the two dates or <b>FALSE</b> on failure.
*
*/
public function diff($datetime2, $absolute = false);
/**
* (PHP 5 >=5.5.0)<br/>
* Returns date formatted according to given format
* @link http://www.php.net/manual/en/datetime.format.php
* @param string $format <p>
* Format accepted by {@link http://www.php.net/manual/en/function.date.php date()}.
* </p>
* @return string
* Returns the formatted date string on success or <b>FALSE</b> on failure.
*
*/
public function format($format);
/**
* (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.
*
*/
public function getOffset();
/**
* (PHP 5 >=5.5.0)<br/>
* Gets the Unix timestamp
* @return int
* Returns the Unix timestamp representing the date.
*/
public function getTimestamp();
/**
* (PHP 5 >=5.5.0)<br/>
* Return time zone relative to given DateTime
* @link http://www.php.net/manual/en/datetime.gettimezone.php
* @return DateTimeZone
* Returns a {@link http://www.php.net/manual/en/class.datetimezone.php DateTimeZone} object on success
* or <b>FALSE</b> on failure.
*/
public function getTimezone();
/**
* (PHP 5 >=5.5.0)<br/>
* The __wakeup handler
* @link http://www.php.net/manual/en/datetime.wakeup.php
* @return void Initializes a DateTime object.
*/
public function __wakeup();
}
class DateTimeImmutable implements DateTimeInterface {
/* Methods */
/**
* (PHP 5 >=5.5.0)<br/>
* @link http://www.php.net/manual/en/datetimeimmutable.construct.php
* @param string $time [optional]
* <p>A date/time string. Valid formats are explained in {@link www.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 DateTimeZone $timezone [optional] <p>
* A {@link http://www.php.net/manual/en/class.datetimezone.php DateTimeZone} object representing the
* timezone of <em>$time</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>
* @return DateTimeImmutable Returns a new DateTimeImmutable instance. Procedural style returns FALSE on failure.
*/
public function __construct($time = "now", $timezone = NULL) { }
/**
* (PHP 5 >=5.5.0)<br/>
* Adds an amount of days, months, years, hours, minutes and seconds
* @param DateInterval $interval
* @return DateTimeImmutable
*/
public function add(DateInterval $interval) { }
/**
* (PHP 5 >=5.5.0)<br/>
* Returns new DateTimeImmutable object formatted according to the specified format
* @link http://www.php.net/manual/en/datetimeimmutable.createfromformat.php
* @param string $format
* @param string $time
* @param DateTimeZone $timezone [optional]
* @return DateTimeImmutable
*/
public static function createFromFormat($format, $time, DateTimeZone $timezone) { }
/**
* (PHP 5 >=5.6.0)<br/>
* Returns new DateTimeImmutable object encapsulating the given DateTime object
* @link http://www.php.net/manual/en/datetimeimmutable.createfrommutable.php
* @param DateTime $dateTime 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.
*/
public static function createFromMutable(DateTime $dateTime) { }
/**
* (PHP 5 >=5.5.0)<br/>
* Returns the warnings and errors
* @link http://www.php.net/manual/en/datetimeimmutable.getlasterrors.php
* @return array Returns array containing info about warnings and errors.
*/
public static function getLastErrors() { }
/**
* (PHP 5 >=5.5.0)<br/>
* Alters the timestamp
* @link http://www.php.net/manual/en/datetimeimmutable.modify.php
* @param string $modify <p>A date/time string. Valid formats are explained in
* {@link http://www.php.net/manual/en/datetime.formats.php Date and Time Formats}.</p>
* @return DateTimeImmutable
* Returns the {@link http://www.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or <b>FALSE</b> on failure.
*/
public function modify($modify) { }
/**
* (PHP 5 >=5.5.0)<br/>
* The __set_state handler
* @link http://www.php.net/manual/en/datetimeimmutable.set-state.php
* @param array $array <p>Initialization array.</p>
* @return DateTimeImmutable
* Returns a new instance of a {@link http://www.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 http://www.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 DateTimeImmutable|bool
* Returns the {@link http://www.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or <b>FALSE</b> on failure.
*
*/
public function setDate($year, $month, $day) { }
/**
* (PHP 5 >=5.5.0)<br/>
* Sets the ISO date
* @link http://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 $day [optional] <p>Offset from the first day of the week.</p>
* @return DateTimeImmutable|bool
* Returns the {@link http://www.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or <b>FALSE</b> on failure.
*/
public function setISODate($year, $week, $day = 1) { }
/**
* (PHP 5 >=5.5.0)<br/>
* Sets the time
* @link http://www.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>
* @return DateTimeImmutable|bool
* Returns the {@link http://www.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or <b>FALSE</b> on failure.
*/
public function setTime($hour, $minute, $second = 0) { }
/**
* (PHP 5 >=5.5.0)<br/>
* Sets the date and time based on an Unix timestamp
* @link http://www.php.net/manual/en/datetimeimmutable.settimestamp.php
* @param int $unixtimestamp <p>Unix timestamp representing the date.</p>
* @return DateTimeImmutable|bool
* Returns the {@link http://www.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or <b>FALSE</b> on failure.
*/
public function setTimestamp($unixtimestamp) { }
/**
* (PHP 5 >=5.5.0)<br/>
* Sets the time zone
* @link http://www.php.net/manual/en/datetimeimmutable.settimezone.php
* @param DateTimeZone $timezone <p>
* A {@link http://www.php.net/manual/en/class.datetimezone.php DateTimeZone} object representing the
* desired time zone.
* </p>
* @return DateTimeImmutable|bool
* Returns the {@link http://www.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or <b>FALSE</b> on failure.
*/
public function setTimezone(DateTimeZone $timezone) { }
/**
* (PHP 5 >=5.5.0)<br/>
* Subtracts an amount of days, months, years, hours, minutes and seconds
* @link http://www.php.net/manual/en/datetimeimmutable.sub.php
* @param DateInterval $interval <p>
* A {@link http://www.php.net/manual/en/class.dateinterval.php DateInterval} object
* </p>
* @return DateTimeImmutable|bool
* Returns the {@link http://www.php.net/manual/en/class.datetimeimmutable.php DateTimeImmutable} object for method chaining or <b>FALSE</b> on failure.
*/
public function sub(DateInterval $interval) { }
/**
* (PHP 5 >=5.5.0)<br/>
* Returns the difference between two DateTime objects
* @link http://www.php.net/manual/en/datetime.diff.php
* @param DateTimeInterface $datetime2 <p>The date to compare to.</p>
* @param bool $absolute [optional] <p>Should the interval be forced to be positive?</p>
* @return DateInterval
* The {@link http://www.php.net/manual/en/class.dateinterval.php DateInterval} object representing the
* difference between the two dates or <b>FALSE</b> on failure.
*/
public function diff($datetime2, $absolute = false) { }
/**
* (PHP 5 >=5.5.0)<br/>
* Returns date formatted according to given format
* @link http://www.php.net/manual/en/datetime.format.php
* @param string $format <p>
* Format accepted by {@link http://www.php.net/manual/en/function.date.php date()}.
* </p>
* @return string
* Returns the formatted date string on success or <b>FALSE</b> on failure.
*
*/
public function format($format) { }
/**
* (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.
*
*/
public function getOffset() { }
/**
* (PHP 5 >=5.5.0)<br/>
* Gets the Unix timestamp
* @return int
* Returns the Unix timestamp representing the date.
*/
public function getTimestamp() { }
/**
* (PHP 5 >=5.5.0)<br/>
* Return time zone relative to given DateTime
* @link http://www.php.net/manual/en/datetime.gettimezone.php
* @return DateTimeZone
* Returns a {@link http://www.php.net/manual/en/class.datetimezone.php DateTimeZone} object on success
* or <b>FALSE</b> on failure.
*/
public function getTimezone() { }
/**
* (PHP 5 >=5.5.0)<br/>
* The __wakeup handler
* @link http://www.php.net/manual/en/datetime.wakeup.php
* @return void Initializes a DateTime object.
*/
public function __wakeup() { }
}
/**
* Representation of date and time.
* @link http://php.net/manual/en/class.datetime.php
*/
class DateTime implements DateTimeInterface {
const ATOM = 'Y-m-d\TH:i:sP';
const COOKIE = 'l, d-M-y H:i:s T';
const ISO8601 = 'Y-m-d\TH:i:sO';
const RFC822 = 'D, d M y H:i:s O';
const RFC850 = 'l, d-M-y H:i:s T';
const RFC1036 = 'D, d M y H:i:s O';
const RFC1123 = 'D, d M Y H:i:s O';
const RFC2822 = 'D, d M Y H:i:s O';
const RFC3339 = 'Y-m-d\TH:i:sP';
const RSS = 'D, d M Y H:i:s O';
const W3C = 'Y-m-d\TH:i:sP';
/**
* @param string $time
* @param DateTimeZone $timezone
* @return DateTime
* @link http://php.net/manual/en/datetime.construct.php
*/
public function __construct ($time='now', DateTimeZone $timezone=null) {}
/**
* @return DateTime
* @link http://php.net/manual/en/datetime.wakeup.php
*/
public function __wakeup () {}
/**
* Returns date formatted according to given format.
* @param string $format
* @return string
* @link http://php.net/manual/en/datetime.format.php
*/
public function format ($format) {}
/**
* Alter the timestamp of a DateTime object by incrementing or decrementing
* in a format accepted by strtotime().
* @param string $modify A date/time string. Valid formats are explained in <a href="http://www.php.net/manual/en/datetime.formats.php">Date and Time Formats</a>.
* @return DateTime Returns the DateTime object for method chaining or FALSE on failure.
* @link http://php.net/manual/en/datetime.modify.php
*/
public function modify ($modify) {}
/**
* Adds an amount of days, months, years, hours, minutes and seconds to a DateTime object
* @param DateInterval $interval
* @return DateTime
* @link http://php.net/manual/en/datetime.add.php
*/
public function add (DateInterval $interval) {}
/**
* Subtracts an amount of days, months, years, hours, minutes and seconds from a DateTime object
* @param DateInterval $interval
* @return DateTime
* @link http://php.net/manual/en/datetime.sub.php
*/
public function sub (DateInterval $interval) {}
/**
* Get the TimeZone associated with the DateTime
* @return DateTimeZone
* @link http://php.net/manual/en/datetime.gettimezone.php
*/
public function getTimezone () {}
/**
* Set the TimeZone associated with the DateTime
* @param DateTimeZone $timezone
* @return $this
* @link http://php.net/manual/en/datetime.settimezone.php
*/
public function setTimezone ($timezone) {}
/**
* Returns the timezone offset
* @return int
* @link http://php.net/manual/en/datetime.getoffset.php
*/
public function getOffset () {}
/**
* Sets the current time of the DateTime object to a different time.
* @param int $hour
* @param int $minute
* @param int $second
* @return $this
* @link http://php.net/manual/en/datetime.settime.php
*/
public function setTime ($hour, $minute, $second=0) {}
/**
* Sets the current date of the DateTime object to a different date.
* @param int $year
* @param int $month
* @param int $day
* @return $this
* @link http://php.net/manual/en/datetime.setdate.php
*/
public function setDate ($year, $month, $day) {}
/**
* 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 $day
* @return $this
* @link http://php.net/manual/en/datetime.setisodate.php
*/
public function setISODate ($year, $week, $day=1) {}
/**
* Sets the date and time based on a Unix timestamp.
* @param int $unixtimestamp
* @return $this
* @link http://php.net/manual/en/datetime.settimestamp.php
*/
public function setTimestamp ($unixtimestamp) {}
/**
* Gets the Unix timestamp.
* @return int
* @link http://php.net/manual/en/datetime.gettimestamp.php
*/
public function getTimestamp () {}
/**
* Returns the difference between two DateTime objects represented as a DateInterval.
* @param DateTimeInterface $datetime2 The date to compare to.
* @param boolean $absolute [optional] Whether to return absolute difference.
* @return DateInterval|boolean The DateInterval object representing the difference between the two dates or FALSE on failure.
* @link http://php.net/manual/en/datetime.diff.php
*/
public function diff ($datetime2, $absolute = false) {}
/**
* Parse a string into a new DateTime object according to the specified format
* @param string $format Format accepted by date().
* @param string $time String representing the time.
* @param DateTimeZone $timezone A DateTimeZone object representing the desired time zone.
* @return DateTime
* @link http://php.net/manual/en/datetime.createfromformat.php
*/
public static function createFromFormat ($format, $time, DateTimeZone $timezone=null) {}
/**
* Returns an array of warnings and errors found while parsing a date/time string
* @return array
* @link http://php.net/manual/en/datetime.getlasterrors.php
*/
public static function getLastErrors () {}
/**
* The __set_state handler
* @link http://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) {}
}
/**
* Representation of time zone
* @link http://php.net/manual/en/class.datetimezone.php
*/
class DateTimeZone {
const AFRICA = 1;
const AMERICA = 2;
const ANTARCTICA = 4;
const ARCTIC = 8;
const ASIA = 16;
const ATLANTIC = 32;
const AUSTRALIA = 64;
const EUROPE = 128;
const INDIAN = 256;
const PACIFIC = 512;
const UTC = 1024;
const ALL = 2047;
const ALL_WITH_BC = 4095;
const PER_COUNTRY = 4096;
/**
* @param string $timezone
* @link http://php.net/manual/en/datetimezone.construct.php
*/
public function __construct ($timezone) {}
/**
* Returns the name of the timezone
* @return string
* @link http://php.net/manual/en/datetimezone.getname.php
*/
public function getName () {}
/**
* Returns location information for a timezone
* @return array
* @link http://php.net/manual/en/datetimezone.getlocation.php
*/
public function getLocation () {}
/**
* Returns the timezone offset from GMT
* @param DateTime $datetime
* @return int
* @link http://php.net/manual/en/datetimezone.getoffset.php
*/
public function getOffset (DateTime $datetime) {}
/**
* Returns all transitions for the timezone
* @param int $timestamp_begin [optional]
* @param int $timestamp_end [optional]
* @return array
* @link http://php.net/manual/en/datetimezone.gettransitions.php
*/
public function getTransitions ($timestamp_begin=null, $timestamp_end=null) {}
/**
* Returns associative array containing dst, offset and the timezone name
* @return array
* @link http://php.net/manual/en/datetimezone.listabbreviations.php
*/
public static function listAbbreviations () {}
/**
* Returns a numerically indexed array with all timezone identifiers
* @param int $what
* @param string $country
* @return array
* @link http://php.net/manual/en/datetimezone.listidentifiers.php
*/
public static function listIdentifiers ($what=DateTimeZone::ALL, $country=null) {}
}
/**
* 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 http://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;
/**
* 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 mixed
*/
public $days;
/**
* @param string $interval_spec
* @link http://php.net/manual/en/dateinterval.construct.php
*/
public function __construct ($interval_spec) {}
/**
* Formats the interval
* @param $format
* @return string
* @link http://php.net/manual/en/dateinterval.format.php
*/
public function format ($format) {}
/**
* Sets up a DateInterval from the relative parts of the string
* @param string $time
* @return DateInterval
* @link http://php.net/manual/en/dateinterval.createfromdatestring.php
*/
public static function createFromDateString ($time) {}
}
/**
* Representation of date period.
* @link http://php.net/manual/en/class.dateperiod.php
*/
class DatePeriod implements Traversable {
const EXCLUDE_START_DATE = 1;
/**
* @param DateTimeInterface $start
* @param DateInterval $interval
* @param DateTimeInterface $end
* @param int $options Can be set to DatePeriod::EXCLUDE_START_DATE.
* @link http://php.net/manual/en/dateperiod.construct.php
*/
public function __construct (DateTimeInterface $start, DateInterval $interval, DateTimeInterface $end, $options=0) {}
/**
* @param DateTimeInterface $start
* @param DateInterval $interval
* @param int $recurrences Number of recurrences
* @param int $options Can be set to DatePeriod::EXCLUDE_START_DATE.
* @link http://php.net/manual/en/dateperiod.construct.php
*/
public function __construct (DateTimeInterface $start, DateInterval $interval, $recurrences, $options=0) {}
/**
* @param string $isostr String containing the ISO interval.
* @param int $options Can be set to DatePeriod::EXCLUDE_START_DATE.
* @link http://php.net/manual/en/dateperiod.construct.php
*/
public function __construct ($isostr, $options=0) {}
}