我只想显示项目描述中的20个字符。例如,在PHP / CodeIgniter中,我们可以使用<td><?= character_limiter($item['description'], 20); ?></td>
,其中20是我要显示的字符数。在Symfony 4中如何做到这一点?
代码:
<thead>
<tr>
<td>Description</td>
</tr>
</thead>
<tbody>
{% for item in itens %}
<tr>
<td> {{item.description}} </td>
</tr>
{% endfor %}
</tbody>
答案 0 :(得分:0)
您可以在树枝中使用str_limit
功能
{{ str_limit(item.description, 20) }}
答案 1 :(得分:0)
如果您使用的是TWIG,则可以使用:
{{ item.description | slice(0, 20) }}