-
Notifications
You must be signed in to change notification settings - Fork 8
/
SchedulerHelperDate.php
executable file
·163 lines (138 loc) · 5.18 KB
/
SchedulerHelperDate.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
<?php
namespace DHTMLX_Scheduler;
use DateTime;
class SchedulerHelperDate
{
const SECONDS_IN_DAY = 86400;
const DAYS_IN_WEEK = 7;
const MONTHS_IN_YEAR = 12;
const FORMAT_DEFAULT = "Y-m-d H:i:s";
static $DATE_UNITS = array(
"hour" => "H",
"minute" => "i",
"second" => "s",
"month" => "m",
"day" => "d",
"year" => "Y"
);
static $INTERVAL_UNITS = array(
"hour" => array("type" => "T", "val" => "H"),
"minute" => array("type" => "T", "val" => "M"),
"second" => array("type" => "T", "val" => "S"),
"month" => array("type" => "", "val" => "M"),
"day" => array("type" => "", "val" => "D"),
"year" => array("type" => "", "val" => "Y")
);
static public function differenceBetweenDates($firstDateStamp, $secondDateStamp) {
$firstDate = new DateTime(date(self::FORMAT_DEFAULT, $firstDateStamp));
$secondDate = new DateTime(date(self::FORMAT_DEFAULT, $secondDateStamp));
$dateUnits = self::$DATE_UNITS;
$differenceArray = array();
foreach($dateUnits as $dateUnit) {
//diff function can't be used here because it gets difference in UTC
$differenceArray[$dateUnit] = abs($firstDate->format($dateUnit) - $secondDate->format($dateUnit));
}
return $differenceArray;
}
static public function getDateTimestamp($date, $serverDate)
{
$parsedDate = date_parse($date);
$timestamp = false;
if ($serverDate) {
$timestamp = gmmktime(
$parsedDate["hour"],
$parsedDate["minute"],
$parsedDate["second"],
$parsedDate["month"],
$parsedDate["day"],
$parsedDate["year"]
);
} else {
$timestamp = mktime(
$parsedDate["hour"],
$parsedDate["minute"],
$parsedDate["second"],
$parsedDate["month"],
$parsedDate["day"],
$parsedDate["year"]
);
}
// mktime/gmmktime returns FALSE for years after 2038 in 32bit PHP, so timestamps for end_dates of endless series will be false as well (usually defined as 9999/1/1).
// If $date is a valid date string and timestamp equals FALSE - assume that's it and give timestamp maximum possible value, so dates could be compared correctly later in code
if($timestamp === false && $parsedDate && !($parsedDate["error_count"])){
$timestamp = PHP_INT_MAX;
}
return $timestamp;
}
static public function getTimestampFromUTCTimestamp($stamp, $serverDate){
$date = new DateTime();
$date->setTimezone(new \DateTimeZone("UTC"));
$date->setTimestamp($stamp);
$date = self::getDateTimestamp($date->format(self::FORMAT_DEFAULT), $serverDate);
return $date;
}
static public function getDayOfWeek($timestamp) {
$weekDay = getdate($timestamp)["wday"];
return $weekDay;
}
static public function getDateInfo($timestamp)
{
$result = array();
$date = new DateTime();
$date->setTimestamp($timestamp);
foreach (self::$DATE_UNITS as $key => $value) {
$result[$key] = $date->format($value);
}
return $result;
}
static public function addDate($timestamp, $unit, $count) {
$date = new DateTime();
$date->setTimestamp($timestamp);
$absCount = $count >= 0 ? $count : abs($count);
$interval = new \DateInterval("P" . $unit["type"] . $absCount . $unit["val"]);
if ($count >= 0)
$date->add($interval);
else
$date->sub($interval);
return $date->getTimestamp();
}
static public function addDays($timestamp, $count) {
return self::addDate($timestamp, self::$INTERVAL_UNITS["day"], $count);
}
static public function addWeeks($timestamp, $count) {
return self::addDate($timestamp, self::$INTERVAL_UNITS["day"], ($count * self::DAYS_IN_WEEK));
}
static public function addMonths($timestamp, $count) {
return self::addDate($timestamp, self::$INTERVAL_UNITS["month"], $count);
}
static public function addYears($timestamp, $count) {
return self::addDate($timestamp, self::$INTERVAL_UNITS["year"], $count);
}
static public function weekStart($timestamp, $startOnMonday = true){
$shift = self::getDayOfWeek($timestamp);
if($startOnMonday){
if($shift === 0){
$shift = 6;
}
else{
$shift--;
}
}
return self::addDays($timestamp, -1*$shift);
}
static public function monthStart($timestamp){
$date = new DateTime();
$date->setTimestamp($timestamp);
$m = $date->format('m');
$y = $date->format('Y');
$date->setDate($y, $m, 1);
return $date->getTimestamp();
}
static public function yearStart($timestamp){
$date = new DateTime();
$date->setTimestamp($timestamp);
$y = $date->format('Y');
$date->setDate($y, 1, 1);
return $date->getTimestamp();
}
}