我如何在Symfony 4中限制角色? (character_limiter CodeIgniter)

时间:2018-09-11 18:44:40

标签: php symfony

我只想显示项目描述中的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>

2 个答案:

答案 0 :(得分:0)

您可以在树枝中使用str_limit功能

{{ str_limit(item.description, 20) }}

答案 1 :(得分:0)

如果您使用的是TWIG,则可以使用:

{{ item.description | slice(0, 20) }}