infureal / php-stringable
更好的体验的字符串助手类
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-08-29 05:31:05 UTC
README
此包受 laravel/laravel 门面 Str
的启发
安装
composer require infureal/php-stringable
如何使用
$str = \Infureal\Str::of('HELLO') ->lower(); echo $str; // hello echo $str->upperFirst(); // Hello