阅读(3983)
赞(17)
Laravel 8 lower {#collection-method}
2021-07-05 09:43:50 更新
lower 方法将指定字符串转换为小写:
use Illuminate\Support\Str;
$result = Str::of('LARAVEL')->lower();
// 'laravel' lower 方法将指定字符串转换为小写:
use Illuminate\Support\Str;
$result = Str::of('LARAVEL')->lower();
// 'laravel'