infureal / php-stringable
String helper class for better experience
1.0.0
2020-08-03 19:27 UTC
Requires
- php: ^7.3
- ext-ctype: *
- ext-mbstring: *
This package is auto-updated.
Last update: 2024-10-29 06:05:52 UTC
README
This package is inspired by laravel/laravel facade Str
Install
composer require infureal/php-stringable
How to use
$str = \Infureal\Str::of('HELLO') ->lower(); echo $str; // hello echo $str->upperFirst(); // Hello