Laravel 8 Str::plural() {#collection-method}

2021-07-19 10:28 更新

Str::plural 方法将单数形式的字符串转换为复数形式。目前该函数仅支持英语:

use Illuminate\Support\Str;

$plural = Str::plural('car');

// cars

$plural = Str::plural('child');

// children 

您亦可给该函数提供一个整数作为第二个参数用于检索单数或复数形式:

use Illuminate\Support\Str;

$plural = Str::plural('child', 2);

// children

$plural = Str::plural('child', 1);

// child 
以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号