Symfony foreach 显示编号
我有一个表单,显示数据库中的 ID 和电子邮件列表,代码如下。我想知道是否有按顺序包含编号而不是使用id。
<?php foreach($pager->getResults() as $user): ?>
<tr>
<td><?php echo $user->getId() ?></td>
<td><?php echo $user->getEmail() ?></td>
</tr>
<?php endforeach; ?>
使用方法: 交响乐形式, 分页。
I have a form show a list of id and emails from database with the code below. I wonder if there anyway to include numbering in order instead of using the id.
<?php foreach($pager->getResults() as $user): ?>
<tr>
<td><?php echo $user->getId() ?></td>
<td><?php echo $user->getEmail() ?></td>
</tr>
<?php endforeach; ?>
Method Using:
Symfony form,
Pagination.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我从未测试过这段代码,但我认为它应该有效
I've never tested this code, but i think it should work