模板工具包中foreach中的loop.index转换为Smarty?
我正在使用 Smarty 将 Perl 中的模板工具包项目转换为 PHP。不过,我一直在尝试在 Smarty 的 foreach 循环中找到与 [% IF Loop.index % 2 %]
等效的内容。我很欣赏这些答案。
I am working on converting a template toolkit project in Perl to PHP with Smarty. However I have been trying to find the equivalent of [% IF loop.index % 2 %]
within a foreach loop for Smarty. I appreciate the answers.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您只是想在 Smarty 中通过偶数/奇数交替显示,我假设这是来自“%”模数运算符(尽管我对 Perl 不熟悉):
或者,如果您真的关心某个值的索引值,数组变量...
If you're simply looking to alternate a display by even/odd in Smarty, which I assume from the '%' modulus operator (though I'm not familiar with Perl):
Alternatively, if you really care about the index value of an array variable ...