CI foreach 中是否有可以使用 {} 表示法访问的索引?
我是 Codeigniter 的新手,想知道我是否可以在我的视图中使用 {}-Notation 访问 foreach 的任何类型的迭代器。
问题是,我有一个列表,应该在每个 x 项目之后进行划分。
示例(我想做的事情:
<ul>
{list}
<li>{items}</li>
<? if ($iterator % 15 == 0) echo "</ul><ul>"; ?>
{/list}
</ul>
感谢建议;-)
i'm new with Codeigniter,and whish to know if i can access any kind of iterator for the foreach with {}-Notation in my views.
The thing is, i'm having a list which should be devided after each x items.
example (what i would like to do:
<ul>
{list}
<li>{items}</li>
<? if ($iterator % 15 == 0) echo "</ul><ul>"; ?>
{/list}
</ul>
thanks in advice ;-)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用的是 codeigniters 模板解析器类,我认为没有办法做你正在寻找的事情。
您可以放弃模板解析器,并使用常规的 for 循环:
If you are using codeigniters template parser class, I don't think there is a way to do what you're looking for.
You could forego the template parser, and use a regular for loop: