-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvDateTime.php
423 lines (392 loc) · 16 KB
/
vDateTime.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
<?php
/**
* Created by PhpStorm.
* User: Сергей Белоусов
* Date: 2017-09-22
* Time: 15:16
*
* Класс разработан для удобства работы с датой в первую очередь для sql,
* при создании может принимать строку с дадой, null, DateTime
* Имеет методы для приражения времени, секунды / минуты / часы / дни / месяцы / годы
* Метод приращения, Прибавляет количество месяцев, а не 31 день * количество месяцев,
* тоесть если к 31му января прибавить 1 месяц, то получим 28/29 февраля, в зависимости от високосного года
* Если приращиваемая дата это последний день месяца,
* то и прибавление месяца даст последний день месяца (31 Октября + 1мес = 30 Ноября) или (28 Февраля + 1мес = 31 Марта)
*/
class vDateTime {
/** @var DateTime $date */
private $dateTime;
/**
* Принимает на вход стандартные параметры как и у DateTime, также можно передовать Null, DateTime и vDateTime
* vDateTime constructor.
* @param vDateTime|DateTime|null|string $dateTime
* @return $this
*/
public function __construct($dateTime = 'now') {
$this->setDateTime($dateTime);
return $this;
}
/**
* Устанавливает новую дату время
* @param vDateTime|DateTime|null|string $dateTime
* @return $this
*/
public function setDateTime($dateTime = 'now') {
switch (gettype($dateTime)) {
case 'string' :
if (empty(trim($dateTime))) {
break;
}
$this->dateTime = new DateTime($dateTime);
return $this;
break;
case 'object':
$class = get_class($dateTime);
if ($class == 'DateTime') {
$this->dateTime = $dateTime;
return $this;
} else if ($class == 'vDateTime') {
$this->dateTime = $dateTime->getDateTime();
return $this;
}
break;
}
$this->dateTime = null;
return $this;
}
/**
* Принудительно клонируем внутренне свойство объекта, иначе при клонировании объекта
* , при изменении в новом объекте оно будет изменяться и в родителе
*/
public function __clone() {
if (gettype($this->dateTime) == 'object') {
$this->dateTime = clone $this->dateTime;
}
}
/**
* Проверяет является ли дата NULL
* @return bool
*/
public function isNull() : bool {
return $this->dateTime == null;
}
/**
* Проверяет не является ли дата null
* @return bool
*/
public function isNotNull() : bool {
return !$this->isNull();
}
/**
* Сравнениет внутренней даты с переданной в параметре, если внуткенняя дата | < возвращает -1 | = возвращает 0 | > возвращает 1 |
* Если одна из дат NULL будет выброшено исключение, преждем чем проводить сравнение дат, необходимо их проверить на null ( isNull || isNotNull )
* @param vDateTime $dateTime
* @return int
* @throws Exception
*/
public function compareTo(vDateTime $dateTime) : int {
if ($this->isNull() || $dateTime->isNull()) {
throw new Exception("Comparison is not possible if one of the dates is null", 0);
}
return $this->getDateTime() == $dateTime->getDateTime() ? 0 : ($this->getDateTime() > $dateTime->getDateTime() ? 1 : -1);
}
/**
* Добавляет заданное количество дней, месяцев, лет, часов, минут и секунд к объекту DateTime
* Редирект к внутреннему объект DateTime
* @param DateInterval $interval
*/
public function add(DateInterval $interval) {
$this->dateTime->add($interval);
}
/**
* Вычитает заданное количество дней, месяцев, лет, часов, минут и секунд из времени объекта DateTime
* Редирект к внутреннему объект DateTime
* @param DateInterval $interval
*/
public function sub(DateInterval $interval) {
$this->dateTime->sub($interval);
}
/**
* Изменение временной метки
* Редирект к внутреннему объект DateTime
* @param string $modify
*/
public function modify(string $modify) {
$this->dateTime->modify($modify);
}
/**
* Устанавливает дату и время, основываясь на метке времени Unix
* Редирект к внутреннему объект DateTime
* @param int $timestamp
*/
public function setTimestamp(int $timestamp) {
$this->dateTime->setTimestamp($timestamp);
}
/**
* Возвращает дату и время, основываясь на метке времени Unix
* Редирект к внутреннему объект DateTime
* @return int
*/
public function getTimestamp() : int {
return $this->dateTime->getTimestamp();
}
/**
* Установка даты
* Редирект к внутреннему объект DateTime
* @param int $year
* @param int $month
* @param int $day
*/
public function setDate(int $year, int $month, int $day) {
$this->dateTime->setDate($year, $month, $day);
}
/**
* Установка времени
* Редирект к внутреннему объект DateTime
* @param int $hour
* @param int $minute
* @param int $second
* @param int $microsecond
*/
public function setTime(int $hour, int $minute, int $second = 0, int $microsecond = 0) {
$this->dateTime->setTime($hour, $minute, $second, $microsecond);
}
/**
* Возвращает разницу между двумя vDateTime объектами
* Редирект к внутреннему объект DateTime
* @param vDateTime $dateTime
* @param bool $absolute
* @return bool|DateInterval
*/
public function diff(vDateTime $dateTime, bool $absolute = false) {
return $this->dateTime->diff($dateTime->getDateTime(), $absolute);
}
/**
* Возвращает смещение часовой зоны
* Редирект к внутреннему объект DateTime
* @return int
*/
public function getOffset() : int {
return $this->dateTime->getOffset();
}
/**
* Возвращает часовую зону относительно текущему значению DateTime
* Редирект к внутреннему объект DateTime
* @return DateTimeZone
*/
public function getTimezone() : DateTimeZone {
return $this->dateTime->getTimezone();
}
/**
* Устанавливает часовую зону относительно текущему значению DateTime
* Редирект к внутреннему объект DateTime
* @param DateTimeZone $timeZone
*/
public function setTimezone(DateTimeZone $timeZone){
$this->dateTime->setTimezone($timeZone);
}
/**
* Возвращает объект DateTime
* @return DateTime
*/
public function getDateTime() : ?DateTime {
return $this->dateTime;
}
/**
* Возвращает строку с датой по заданному формату по умолчанию Y-m-d
* @param string $format
* @return string
*/
public function getDateStr(string $format = 'Y-m-d') : string {
if ($this->dateTime == null) {
$val = "";
} else {
$val = $this->dateTime->format($format);
}
return $val;
}
/**
* Возвращает строку с датой по заданному формату по умолчанию Y-m-d H:i:s
* @param string $format
* @return string
*/
public function getDateTimeStr($format = 'Y-m-d H:i:s') : string {
return $this->getDateStr($format);
}
/**
* Возвращает дату готовую для вставки в sql выражение, без последующей необходимости в escape`инге
* @param string $format
* @return string
*/
public function getDateSql(string $format = 'Y-m-d') : string {
if ($this->dateTime == null) {
return "NULL";
} else {
$val = $this->dateTime->format($format);
}
return "\"" . $this->escape($val) . "\"";
}
/**
* Возвращает дату готовую для вставки в sql выражение, без последующей необходимости в escape`инге
* @param string $format
* @return string
*/
public function getDateTimeSql($format = 'Y-m-d H:i:s') : string {
return $this->getDateSql($format);
}
/**
* Добавляет заданое количество секунд
* @param int $seconds
* @return vDateTime
*/
public function addSeconds(int $seconds) : vDateTime {
if ($this->dateTime == null) return $this;
$intDateTime = $this->dateTime->getTimestamp();
$intNewDateTime = $intDateTime + $seconds;
$this->dateTime->setTimestamp($intNewDateTime);
return $this;
}
/**
* Добавляет заданое количество минут
* @param int $minuts
* @return vDateTime
*/
public function addMinuts(int $minuts) : vDateTime {
if ($this->dateTime == null) return $this;
$intDateTime = $this->dateTime->getTimestamp();
$intNewDateTime = $intDateTime + ($minuts * 60);
$this->dateTime->setTimestamp($intNewDateTime);
return $this;
}
/**
* Добавляет заданое количество часов
* @param int $hours
* @return vDateTime
*/
public function addHours(int $hours) : vDateTime {
if ($this->dateTime == null) return $this;
$intDateTime = $this->dateTime->getTimestamp();
$intNewDateTime = $intDateTime + ($hours * 3600);
$this->dateTime->setTimestamp($intNewDateTime);
return $this;
}
/**
* Добавляет заданое количество дней
* @param int $days
* @return vDateTime
*/
public function addDays(int $days) : vDateTime {
if ($this->dateTime == null) return $this;
$intDateTime = $this->dateTime->getTimestamp();
$intNewDateTime = $intDateTime + ($days * 86400);
$this->dateTime->setTimestamp($intNewDateTime);
return $this;
}
/**
* Добавляет заданное колличество месяцев
* Прибавляет количество месяцев, а не 31 день * количество месяцев,
* тоесть если к 31му января прибавить 1 месяц, то получим 28/29 февраля, в зависимости от високосного года
* Если приращиваемая дата это последний день месяца,
* то и прибавление месяца даст последний день месяца (31 Октября + 1мес = 30 Ноября) или (28 Февраля + 1мес = 31 Марта)
* @param int $months
* @return $this
*/
public function addMonths(int $months) {
if ($this->dateTime == null) return $this;
list($intYear, $intMonth, $intDay, $lastDay) = explode('|', $this->dateTime->format('Y|m|d|t'));
$prevIsLastDay = $intDay == $lastDay;
$intMonth = $intMonth + $months;
$intYear += floor($intMonth / 12);
$intMonth = $intMonth % 12;
$lastDayInNewDate = $this->getMaxDaysInMonth($intYear, $intMonth);
$intDay = (($intDay > $lastDayInNewDate) || ($prevIsLastDay)) ? $lastDayInNewDate : $intDay;
$this->dateTime->setDate($intYear, $intMonth, $intDay);
return $this;
}
/**
* Добавляет заданное количество лет
* @param int $years
* @return vDateTime
*/
public function addYaers(int $years) : vDateTime {
if ($this->dateTime == null) return $this;
list($intYear, $intMonth, $intDay) = explode('|', $this->dateTime->format('Y|m|d'));
$intYear += $years;
$lastDayInNewDate = $this->getMaxDaysInMonth($intYear, $intMonth);
$intDay = $intDay > $lastDayInNewDate ? $lastDayInNewDate : $intDay;
$this->dateTime->setDate($intYear, $intMonth, $intDay);
return $this;
}
/**
* Меняет внутренней дате день на первый день в месяце
* @return $this
*/
public function setFirstDayOfMonth() {
if ($this->dateTime == null) return $this;
list($intYear, $intMonth) = explode('|', $this->dateTime->format('Y|m'));
$this->dateTime->setDate($intYear, $intMonth, 1);
return $this;
}
/**
* Меняет внутренней дате день на последний в месяце
* @return $this
*/
public function setLastDayOfMonth() {
if ($this->dateTime == null) return $this;
list($intYear, $intMonth, $lastDay) = explode('|', $this->dateTime->format('Y|m|t'));
$this->dateTime->setDate($intYear, $intMonth, $lastDay);
return $this;
}
private function getMaxDaysInMonth(int $intYear, int $intMonth) : int {
if ($intMonth == 2) {
if (($intYear%4 == 0 && $intYear%100 != 0) || ($intYear%400 == 0)) {
$lastDayInNewDate = 29;
} else {
$lastDayInNewDate = 28;
}
} else if (in_array($intMonth, [4,6,9,11])) {
$lastDayInNewDate = 30;
} else {
$lastDayInNewDate = 31;
}
return $lastDayInNewDate;
}
/**
* Возвращает номер года
* @return int
*/
public function getYear() : int {
if ($this->dateTime == null) return null;
return intval($this->dateTime->format('Y'));
}
/**
* Возвращает номер месяца в году
* @return int
*/
public function getMonth() : int {
if ($this->dateTime == null) return null;
return intval($this->dateTime->format('m'));
}
/**
* Возвращает номер дня в месяце
* @return int
*/
public function getDay() : int {
if ($this->dateTime == null) return null;
return intval($this->dateTime->format('d'));
}
/**
* Возвращает последний номер деня в месяце
* @return int
*/
public function getLastDayInMonth() : int {
if ($this->dateTime == null) return null;
list($yy, $mm) = explode('|', intval($this->dateTime->format('Y|m')));
return $this->getMaxDaysInMonth($yy, $mm);
}
private function escape(string $value) : string {
$search = array("\\", "\x00", "\n", "\r", "'", '"', "\x1a");
$replace = array("\\\\","\\0","\\n", "\\r", "\'", '\"', "\\Z");
return str_replace($search, $replace, $value);
}
}