阅读(4889)
赞(22)
Laravel 8 Str::lower() {#collection-method}
2021-07-03 16:54:19 更新
Str::lower 方法用于将字符串转换为小写:
use Illuminate\Support\Str;
$converted = Str::lower('LARAVEL');
// laravel Str::lower 方法用于将字符串转换为小写:
use Illuminate\Support\Str;
$converted = Str::lower('LARAVEL');
// laravel