阅读(1982)
赞(35)
Laravel 8 Str::camel() {#collection-method}
2021-07-03 16:54:17 更新
Str::camel 方法将指定字符串转换为 驼峰式 表示方法:
use Illuminate\Support\Str;
$converted = Str::camel('foo_bar');
// fooBar Str::camel 方法将指定字符串转换为 驼峰式 表示方法:
use Illuminate\Support\Str;
$converted = Str::camel('foo_bar');
// fooBar