Laravel 限制字符 - PHP
Laravel Limit Characters - PHP
我使用这行代码在我的应用程序上显示下一个 post 标题
<span class="blog-title-next"> {{ $post->nextPost()['title'] }} </span>
如何限制标题名称只显示前 10 个字符?
谢谢。
您可以使用 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 (...)
我使用这行代码在我的应用程序上显示下一个 post 标题
<span class="blog-title-next"> {{ $post->nextPost()['title'] }} </span>
如何限制标题名称只显示前 10 个字符?
谢谢。
您可以使用 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 (...)