Laravel限制字符 - PHP

Nik*_*ola 5 html php laravel laravel-blade

我使用这行代码在我的应用程序上显示下一个帖子标题

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

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

谢谢.

Pan*_*lis 33

你可以使用str_limit()辅助函数:

{{ str_limit($post->nextPost()['title'], 10) }}
Run Code Online (Sandbox Code Playgroud)

  • 你可以做{{str_limit($ post-> nextPost(),$ limit = 150,$ end ='...')}} (4认同)