This repository was archived by the owner on Jul 28, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathStrings.php
154 lines (133 loc) · 3.99 KB
/
Strings.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
<?php declare (strict_types = 1);
namespace Wavevision\Utils;
use Nette\InvalidArgumentException;
use Nette\IOException;
use Nette\Utils\Strings as NetteStrings;
use function count;
use function iconv;
use function lcfirst;
use function preg_match;
use function preg_replace;
use function rtrim;
use function str_replace;
use function stripos;
use function strlen;
use function strrchr;
use function strtolower;
use function strtr;
use function substr;
use function ucwords;
class Strings extends NetteStrings
{
public static function autoUtf(string $s): string
{
if (preg_match(Encoding::UTF_PATTERN, $s)) {
$output = $s;
} elseif (preg_match(Encoding::WIN_PATTERN, $s)) {
$output = self::convertEncoding($s, Encoding::WINDOWS_1250, Encoding::UTF);
} else {
$output = self::convertEncoding($s, Encoding::LATIN, Encoding::UTF);
}
return $output;
}
public static function camelCaseToDashCase(string $s): string
{
return strtolower(self::replace($s, '/([a-zA-Z])(?=[A-Z])/', '$1-'));
}
public static function camelCaseToSnakeCase(string $s): string
{
return self::replace(self::camelCaseToDashCase($s), '/-/', '_');
}
public static function contains(string $haystack, string $needle, bool $caseSensitive = true): bool
{
if ($caseSensitive === true) {
return parent::contains($haystack, $needle);
}
return stripos($haystack, $needle) !== false;
}
public static function convertBytes(string $s): int
{
$matches = self::match(str_replace(' ', '', $s), '/([0-9]+)([a-z]{0,2})/i');
if ($matches === null || count($matches) !== 3) {
throw new InvalidArgumentException("Invalid size '$s'!");
}
[, $value, $unit] = $matches;
if (strlen($unit) === 2) {
$unit = substr($unit, 0, 1);
}
switch (strtolower($unit)) {
case 'k':
return (int)$value * 1024;
case 'm':
return (int)$value * (1024 ** 2);
case 'g':
return (int)$value * (1024 ** 3);
default:
return (int)$value;
}
}
public static function convertEncoding(string $s, string $sourceEncoding, string $targetEncoding): string
{
$converted = @iconv($sourceEncoding, $targetEncoding, $s);
if ($converted === false) {
throw self::createEncodingIOException($sourceEncoding, $targetEncoding);
}
return $converted;
}
public static function dashCaseToCamelCase(string $s): string
{
return lcfirst(str_replace('-', '', ucwords($s, '-')));
}
public static function getClassName(string $class, bool $camelCase = false): string
{
$className = substr(strrchr($class, '\\') ?: $class, 1);
return $camelCase ? lcfirst($className) : $className;
}
public static function getNamespace(string $class): string
{
return rtrim(str_replace(self::getClassName($class), '', $class), '\\');
}
public static function removeAccentedChars(string $s): string
{
return self::replace(
self::convertEncoding(self::autoUtf($s), Encoding::UTF, 'ascii//TRANSLIT'),
'/[^a-zA-z]/',
''
);
}
public static function removeBlankLines(string $s): string
{
return self::replace($s, "/(^[\r\n]*|[\r\n]+)[\s\t]*[\r\n]+/", "\n");
}
public static function removeBOM(string $s): string
{
return self::replace($s, "#\xEF\xBB\xBF#", '');
}
public static function removeEmoji(string $s): string
{
foreach (Encoding::EMOJI_PATTERNS as $pattern) {
$s = self::replace($s, $pattern, '');
}
return $s;
}
public static function removeWhitespace(string $s): string
{
return self::replace($s, '/\s+/', '');
}
public static function utf2win(string $s): string
{
$output = preg_replace(Encoding::UTF_2_WIN_PATTERN, '', $s);
if ($output === null) {
throw self::createEncodingIOException(Encoding::UTF, Encoding::WINDOWS_1250);
}
return strtr($output, Encoding::UTF_2_WIN_TABLE);
}
public static function win2utf(string $s): string
{
return self::convertEncoding($s, Encoding::WINDOWS_1250, Encoding::UTF);
}
private static function createEncodingIOException(string $source, string $target): IOException
{
return new IOException("Unable to convert '$source' to '$target' encoding.");
}
}