lower 方法将指定字符串转换为小写:
lower
use Illuminate\Support\Str; $result = Str::of('LARAVEL')->lower(); // 'laravel'
关闭