Twig 中的 str_replace
我想在我的树枝模板中做一个简单的 str_replace 。我是树枝的新手,可能我需要添加新的过滤器或类似的东西或使用现有的。我该怎么做?在哪里可以找到可用过滤器列表?
I want to do a simple str_replace in my twig template. I'm new to twig and probably I need to add new filter or sth like that or to use existing. How can I do this? Where can I find list of filters available?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
使用此命令将
|
替换为-
并替换,
宽度.
:示例输入
31|60,
结果为31-60。
Use this to replace
|
with-
and replace,
width.
:Example input
31|60,
comes out as31-60.
要替换存储在树枝变量中的字符串:
To replace a string which is stored in twig variables:
当我们在单引号内添加单引号时,我们会遇到错误。
解决方案:-
When we add a single quote inside a single quote then we face the error.
solution for that:-
另外,这对于摆脱(utf-8)语言字符可能很有用......
Also, this could be useful for getting rid of (utf-8) language chars...
用这个来替换 .用“”,替换-宽度“”和:替换_宽度“”:
“”=无或NULL
输入 najim_el-guennouni,输出为 najimelguennouni。
Use this to replace . with "" , replace - width "" and : replace _ width "" :
"" = nothing or NULL
input najim_el-guennouni, out as najimelguennouni.