You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`Str::filter(array $mixed):array`| Filters an array and removes all elements that are not strings. Array keys are *not* retained |
115
-
|`Str::toUpper(array $strings):array`| Converts the strings in an array to uppercase |
116
-
|`Str::toLower(array $strings):array`| Converts the strings in an array to lowercase |
117
-
|`Str::startsWith(string $haystack, array $needles, bool $ignoreCase = false):bool`| Checks whether the given string starts with *any* of the given array of needles |
118
-
|`Str::containsAll(string $haystack, array $needles, bool $ignoreCase = false):bool`| Checks whether the given string (haystack) contains *all* of the given array of needles |
119
-
|`Str::containsAny(string $haystack, array $needles, bool $ignoreCase = false):bool`| Checks whether the given string (haystack) contains *any* of the given array of needles |
120
-
|`Str::jsonDecode(string $json, bool $associative = false, int $flags = 0):mixed`| Decodes a JSON string |
121
-
|`Str::jsonEncode(mixed $data, int $flags = self::JSON_ENCODE_FLAGS_DEFAULT):string`| Encodes a value into a JSON representation |
122
-
|`Str::base64encode(string $string, int $variant = SODIUM_BASE64_VARIANT_ORIGINAL):string`| Encodes a binary string to base64 (timing-safe) |
123
-
|`Str::base64decode(string $base64, int $variant = SODIUM_BASE64_VARIANT_ORIGINAL):string`| Decodes a base64 string into binary (timing-safe) |
|`Str::filter(array $mixed):array`| Filters an array and removes all elements that are not strings. Array keys are *not* retained |
115
+
|`Str::toUpper(array $strings):array`| Converts the strings in an array to uppercase |
116
+
|`Str::toLower(array $strings):array`| Converts the strings in an array to lowercase |
117
+
|`Str::startsWith(string $haystack, array $needles, bool $ignoreCase = false):bool`| Checks whether the given string starts with *any* of the given array of needles |
118
+
|`Str::containsAll(string $haystack, array $needles, bool $ignoreCase = false):bool`| Checks whether the given string (haystack) contains *all* of the given array of needles |
119
+
|`Str::containsAny(string $haystack, array $needles, bool $ignoreCase = false):bool`| Checks whether the given string (haystack) contains *any* of the given array of needles |
120
+
|`Str::jsonDecode(string $json, bool $associative = false, int $flags = 0):mixed`| Decodes a JSON string |
121
+
|`Str::jsonEncode(mixed $data, int $flags = self::JSON_ENCODE_FLAGS_DEFAULT):string`| Encodes a value into a JSON representation |
122
+
|`Str::base64encode(string $string, int $variant = SODIUM_BASE64_VARIANT_ORIGINAL):string`| Encodes a binary string to base64 (timing-safe) |
123
+
|`Str::base64decode(string $base64, int $variant = SODIUM_BASE64_VARIANT_ORIGINAL, string $ignore = ''):string`| Decodes a base64 string into binary (timing-safe) |
0 commit comments