我有页面产品。我有代码meta description
:
@section('meta-desc', mb_substr(strip_tags($product['content']), 0, 157) . '...')
变量$product['content']
中可以是html标签。我有过滤器。
但我得到代码nbsp;..
和空格..
如何正确过滤元描述?
由于
答案 0 :(得分:0)
将其更改为:
@section('meta-desc')
{!! mb_substr($product['content'], 0, 157) !!}...
@endsection
此外,而不是:
mb_substr(strip_tags($product['content']), 0, 157)
您可以使用str_limit()
:
str_limit(strip_tags($product['content']), 157)