10

我使用这行代码在我的应用程序上显示下一篇文章标题

<span class="blog-title-next"> {{ $post->nextPost()['title'] }} </span>

如何将标题名称限制为仅显示前 10 个字符?

谢谢。

4

1 回答 1

49

您可以使用str_limit()辅助功能:

{{ str_limit($post->nextPost()['title'], 10) }}

对于较新版本的 laravel

use Illuminate\Support\Str;

$truncated = Str::limit('The quick brown fox jumps over the lazy dog', 20, ' (...)');

// The quick brown fox (...)
于 2015-12-16T19:26:29.340 回答