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