-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChecks.php
84 lines (76 loc) · 2.04 KB
/
Checks.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
<?php
class Checks
{
/**
* Checks if the given value is an array.
*
* @param mixed $value The value to check.
* @return bool TRUE if the value is an array, otherwise FALSE.
*/
public static function isArray($value)
{
return is_array($value);
}
/**
* Checks if the given value is an integer.
*
* @param mixed $value The value to check.
* @return bool TRUE if the value is an integer, otherwise FALSE.
*/
public static function isNumber($value)
{
return is_int($value);
}
/**
* Checks if the given value is a float.
*
* @param mixed $value The value to check.
* @return bool TRUE if the value is a float, otherwise FALSE.
*/
public static function isFloat($value)
{
return is_float($value);
}
/**
* Checks if the given value is a double.
* (In PHP, double is an alias for float.)
*
* @param mixed $value The value to check.
* @return bool TRUE if the value is a double, otherwise FALSE.
*/
public static function isDouble($value)
{
return is_double($value);
}
/**
* Checks if the given value is a string.
*
* @param mixed $value The value to check.
* @return bool TRUE if the value is a string, otherwise FALSE.
*/
public static function isString($value)
{
return is_string($value);
}
/**
* Checks if the given value is a valid URL.
*
* @param string $value The value to check.
* @return bool TRUE if the value is a valid URL, otherwise FALSE.
*/
public static function isUrl($value)
{
return filter_var($value, FILTER_VALIDATE_URL) !== false;
}
/**
* Checks if the given value is a valid email address.
*
* @param string $value The value to check.
* @return bool TRUE if the value is a valid email address, otherwise FALSE.
*/
public static function isEmail($value)
{
return filter_var($value, FILTER_VALIDATE_EMAIL) !== false;
}
}
?>