Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个树枝模板,我在其中呈现了从数据库中获取的一些信息。信息的长度很大,不适合为其提供的空间。我想在我的树枝模板中使用php 的substr函数。
index.html.twig 包含
<span>{{ patent.description }}</span>
描述很长我想显示整个描述的前 80 个字符。
在php中我可以使用
substr(patent.description,0,80)
谁能指导我如何在我的树枝模板中使用这个功能?
切片函数执行此操作,
<span>{{ patent.description|slice(0,80) }}</span>
切片过滤器用作数组的 array_slice PHP 函数和字符串的 substr。它是在 Twig 1.6 中添加的。