将 smarty 默认变量修饰符与 gettext 一起使用
我目前正在使用 smarty 与 zend 框架,并且我已设置 smarty 以按以下方式使用 gettext:
{gettext text="resource-identifier"}
这工作正常,但在尝试将其与 smarty 默认变量处理程序一起使用时遇到问题。 我想这样做:
{$somevar|default:gettext text="resource-identifier"}
但这只打印“gettext”。 关于我如何做到这一点的任何建议。 有可能吗?
I'm currently using smarty with zend framework, and I have set up smarty to use gettext in the following manner:
{gettext text="resource-identifier"}
This works properly, but I got a problem when trying to use this with the smarty default variable handler. I want to do this:
{$somevar|default:gettext text="resource-identifier"}
But this only prints 'gettext'. Any suggestions to how I can do this. Is it even possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于聪明人来说,链接函数的结果是不可能的。 您需要查看 gettext 是否可以将其结果分配给变量(分配 = varname 参数),或者编写自己的结果(此时只需编写一个新的修饰符,如 default_gettext:'resource-id'
)假设分配,它看起来像:
在 new 修饰符中,它看起来像:
For smarty, chaining a result of a function isn't possible like that. You'll need to see if gettext can assign its result to a variable (an assign=varname param), or write your own (and at that point just write a new modifier that is like default_gettext:'resource-id')
in the assumed assign, it'd look like:
In the new modifier it'd look like: