Laravel 8 plural {#collection-method}

2021-07-19 10:33 更新

plural 方法將單數(shù)形式的字符串轉(zhuǎn)換為復(fù)數(shù)形式。目前該函數(shù)僅支持英語:

use Illuminate\Support\Str;

$plural = Str::of('car')->plural();

// cars

$plural = Str::of('child')->plural();

// children   

您亦可給該函數(shù)提供一個整數(shù)作為第二個參數(shù)用于檢索單數(shù)或復(fù)數(shù)形式:

use Illuminate\Support\Str;

$plural = Str::of('child')->plural(2);

// children

$plural = Str::of('child')->plural(1);

// child 
以上內(nèi)容是否對您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號
微信公眾號

編程獅公眾號