阅读(3713) (15)

Laravel 8 prepend {#collection-method}

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

prepend 方法用于在指定字符串的开头插入另一指定字符串:

use Illuminate\Support\Str;

$string = Str::of('Framework')->prepend('Laravel ');

// Laravel Framework