-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSearch.php
More file actions
91 lines (77 loc) · 2.7 KB
/
Copy pathSearch.php
File metadata and controls
91 lines (77 loc) · 2.7 KB
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
<?php
declare(strict_types=1);
namespace Zero\Lib\Support\Concerns\Str;
trait Search
{
public static function contains(string $haystack, string $needle): bool
{
return $needle === '' || str_contains($haystack, $needle);
}
public static function startsWith(string $haystack, string $needle): bool
{
return str_starts_with($haystack, $needle);
}
public static function endsWith(string $haystack, string $needle): bool
{
return str_ends_with($haystack, $needle);
}
public static function containsAll(string $haystack, iterable $needles): bool
{
foreach ($needles as $needle) {
if (! self::contains($haystack, (string) $needle)) {
return false;
}
}
return true;
}
public static function containsAny(string $haystack, iterable $needles): bool
{
foreach ($needles as $needle) {
if (self::contains($haystack, (string) $needle)) {
return true;
}
}
return false;
}
public static function startsWithAny(string $haystack, iterable $needles): bool
{
foreach ($needles as $needle) {
if (self::startsWith($haystack, (string) $needle)) {
return true;
}
}
return false;
}
public static function endsWithAny(string $haystack, iterable $needles): bool
{
foreach ($needles as $needle) {
if (self::endsWith($haystack, (string) $needle)) {
return true;
}
}
return false;
}
public static function doesntContain(string $haystack, string|iterable $needles, bool $ignoreCase = false): bool
{
return ! self::containsAny($haystack, is_iterable($needles) ? $needles : [$needles]);
}
public static function doesntStartWith(string $haystack, string|iterable $needles): bool
{
return ! self::startsWithAny($haystack, is_iterable($needles) ? $needles : [$needles]);
}
public static function doesntEndWith(string $haystack, string|iterable $needles): bool
{
return ! self::endsWithAny($haystack, is_iterable($needles) ? $needles : [$needles]);
}
public static function position(string $haystack, string $needle, int $offset = 0, ?string $encoding = null): int|false
{
return mb_strpos($haystack, $needle, $offset, $encoding ?? 'UTF-8');
}
public static function substrCount(string $haystack, string $needle, int $offset = 0, ?int $length = null): int
{
if ($length === null) {
return substr_count($haystack, $needle, $offset);
}
return substr_count($haystack, $needle, $offset, $length);
}
}