相当于lcfirst的树枝

Twig equivalent of lcfirst

我无法在 Twig 中找到与 lcfirst php 函数等效的函数,我的需要是只降低单词的第一个字母? 如果不存在这样的功能,最好的方法是什么?

this issue on Github 中所述,您可以使用:

{{ foo[:1]|lower ~ foo[1:] }}

参见this working example

只需将函数与过滤器链接起来,将其添加到 twig 中,例如

$twig->addFilter(new \Twig\TwigFilter('lcfirst', 'lcfirst'));

然后在任何树枝模板中使用它,例如

{{ string | lcfirst }}