ziyodulloxon / string-helper
There is no license information available for the latest version (1.0.4) of this package.
Do something with your strings
1.0.4
2025-08-21 08:07 UTC
Requires
- php: >=8.0
- ext-mbstring: *
README
$src = "It is a long established fact that a reader will be distracted by the readable content of a page when" . "looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution" . "of letters, as opposed to using 'Content here, content here', making it look like readable English."; $string = \Ziyodulloxon\StringHelper\Facades\Str::capitalize($src); $words = $string->splitToSentences()->capitalizeAll()->get(); echo $words;