Laravel 8 Str::limit() {#collection-method}
2021-07-19 10:27 更新
Str::limit
方法将字符串以指定长度进行截断:
use Illuminate\Support\Str;
$truncated = Str::limit('The quick brown fox jumps over the lazy dog', 20);
// The quick brown fox...
您亦可通过第三个参数来改变追加到末尾的字符串:
use Illuminate\Support\Str;
$truncated = Str::limit('The quick brown fox jumps over the lazy dog', 20, ' (...)');
// The quick brown fox (...)
以上内容是否对您有帮助:
更多建议: