symfony 2 twig limit the length of the text and put three dots

前端 未结 13 2029
太阳男子
太阳男子 2021-01-30 00:36

How can I limit the length of the text, e.g., 50, and put three dots in the display?

{% if myentity.text|length > 50 %}

{% block td_text %} {{ myentity.text}         


        
13条回答
  •  闹比i
    闹比i (楼主)
    2021-01-30 01:18

    {{ myentity.text|length > 50 ? myentity.text|slice(0, 50) ~ '...' : myentity.text  }}
    

    You need Twig 1.6

提交回复
热议问题