阅读(4395) (18)

Laravel 8 ucfirst {#collection-method}

2021-07-05 09:43:55 更新

ucfirst 方法用于将指定字符串转换为首字母大写的形式并将其返回:

use Illuminate\Support\Str;

$string = Str::of('foo bar')->ucfirst();

// Foo bar