我正在使用laravel 5. 5试图限制ckeditor字符串,但它的输出我喜欢这样我的数据库
<p> something something something something something </p>
我正在努力
{!! substr($content,0, 20) !!}
产出
<p> something ...
而不是结束段落,这就是为什么我的网页崩溃,不能正常工作我如何将ckeditor字符串转换为普通字符串并限制它谢谢
c7rzv4ha1#
使用strip_tags()
strip_tags()
{!! strip_tags(substr($content,0, 20)) !!}
tyky79it2#
substr_replace($fetch_testimonials['fld_testinomial_description'], "...", 200);
2条答案
按热度按时间c7rzv4ha1#
使用
strip_tags()
tyky79it2#