-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Interval.php
52 lines (44 loc) · 1.15 KB
/
Interval.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
<?php declare(strict_types=1);
namespace h4kuna\DataType\Date;
use DateInterval;
use DateTimeInterface;
use h4kuna\DataType\Number\Math;
use Nette\Utils;
final class Interval
{
public static function toSeconds(DateInterval $dateInterval): int
{
return (int) round(self::toSecondsMilli($dateInterval));
}
public static function toSecondsMilli(DateInterval $dateInterval): float
{
if ($dateInterval->days === false) {
$days = $dateInterval->y * Utils\DateTime::YEAR
+ $dateInterval->m * Utils\DateTime::MONTH
+ $dateInterval->d * Utils\DateTime::DAY;
} else {
$days = $dateInterval->days * Utils\DateTime::DAY;
}
$days += $dateInterval->h * Utils\DateTime::HOUR
+ $dateInterval->i * Utils\DateTime::MINUTE
+ $dateInterval->s
+ $dateInterval->f;
return $dateInterval->invert === 1 ? $days * -1 : $days;
}
/**
* @template T of DateTimeInterface
* @param T $date
* @param T|null $from
* @param T|null $to
*
* @return T
*/
public static function interval(
DateTimeInterface $date,
?DateTimeInterface $from,
?DateTimeInterface $to = null
): DateTimeInterface
{
return Math::interval($date, $to, $from);
}
}