阅读(3786)
赞(17)
Laravel 8 snake {#collection-method}
2021-07-05 09:43:53 更新
snake 方法用于将字符串转换为 蛇形命名方式 :
use Illuminate\Support\Str;
$converted = Str::of('fooBar')->snake();
// foo_bar snake 方法用于将字符串转换为 蛇形命名方式 :
use Illuminate\Support\Str;
$converted = Str::of('fooBar')->snake();
// foo_bar