-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathText.php
101 lines (87 loc) · 2.2 KB
/
Text.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
<?php
/**
* @author stev leibelt <artodeto@bazzline.net>
* @since 2015-10-10
*/
namespace Net\Bazzline\Component\Toolbox\Scalar;
class Text
{
public function contains(
string $haystack,
string $needle,
bool $searchCaseInsensitive = false
): bool {
if (strlen($needle) == 0) {
$contains = false;
} else {
if ($searchCaseInsensitive) {
$haystack = strtolower($haystack);
$needle = strtolower($needle);
}
$contains = str_contains($haystack, $needle);
}
return $contains;
}
public function endsWith(
string $haystack,
string $needle,
bool $searchCaseInsensitive = false
): bool {
if ($searchCaseInsensitive) {
$haystack = strtolower($haystack);
$needle = strtolower($needle);
}
return (
substr(
$haystack,
-(
strlen($needle)
)
) === $needle
);
}
public function hasTheLengthOf(
string $string,
int $expectedLength
): bool {
$length = strlen($string);
return ($length == $expectedLength);
}
public function isLongerThan(
string $string,
int $expectedLength
): bool {
$length = strlen($string);
return ($length > $expectedLength);
}
public function isShorterThan(
string $string,
int $expectedLength
): bool {
$length = strlen($string);
return ($length > $expectedLength);
}
/**
* @param string $haystack
* @param string $needle
* @param bool|false $searchCaseInsensitive
* @return bool
*/
public function startsWith(
string $haystack,
string $needle,
bool $searchCaseInsensitive = false
): bool {
if ($searchCaseInsensitive) {
$haystack = strtolower($haystack);
$needle = strtolower($needle);
}
return (
strncmp(
$haystack,
$needle,
strlen($needle)
) === 0
);
}
}