-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDatesValidation.php
79 lines (68 loc) · 2.05 KB
/
DatesValidation.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
<?php
namespace Cirici\Validation;
use Cake\Validation\Validation;
class DatesValidation extends Validation
{
/**
* Checks if the passed date(time) is a past date
*
* @param mixed $check The date to be checked. Can be either string, array
* or a DateTimeInterface instance.
* @return bool
*/
public static function past($check)
{
if ($check instanceof \DateTimeInterface) {
return $check < new \DateTime();
}
if (is_array($check)) {
$check = static::_getDateString($check);
}
return strtotime($check) < time();
}
/**
* Checks if the passed date(time) is a past date
*
* @param mixed $check The date to be checked. Can be either string, array
* or a DateTimeInterface instance.
* @return bool
*/
public static function future($check)
{
if ($check instanceof \DateTimeInterface) {
return $check > new \DateTime();
}
if (is_array($check)) {
$check = static::_getDateString($check);
}
return strtotime($check) > time();
}
/**
* Checks if the passed date(time) is today.
*
* @param mixed $check The date to be checked. Can be either string, array
* or a DateTimeInterface instance.
* @return bool
*/
public static function today($check)
{
if ($check instanceof \DateTimeInterface) {
return $check->format('Y-d-m') === date('Y-d-m');
}
if (is_array($check)) {
$check = static::_getDateString($check);
}
return date('Y-m-d', strtotime($check)) === date('Y-m-d');
}
/**
* Checks if the passed date(time) is not today.
*
* @param mixed $check The date to be checked. Can be either string, array
* or a DateTimeInterface instance.
* @return bool
*/
public static function notToday($check)
{
return !static::today($check);
}
}