PHP echo 三行?
我试图以三行的形式显示数据,如下所示(请注意,项目数并不总是偶数):
<前>abcd defg hijk LMNO PQRS TUVW XYZ1 2345 6789 1011 1213
我正在努力寻找正确的逻辑来执行此操作(这是在 foreach() 循环中)。
我知道我必须有一些 if($i %3 == 0)
逻辑。但我有点卡住了。
有人可以帮我吗?
I am attempting to show data in rows of three like this (notice the number of items will not always be even):
abcd defg hijk lmno pqrs tuvw xyz1 2345 6789 1011 1213
I am struggling to get the logic right to do this (this is in a foreach()
loop).
I know I have to have some if($i %3 == 0)
logic in there.. But I'm a bit stuck.
Can anyone help me out?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
最好使用
for
循环:实际代码
It's better to use a
for
loop as:Code in action
伪代码,因为我不了解 PHP(并且您要求所有过程语言中的逻辑往往相同):
这都会在元素 3、6、9 等之前输出行分隔符(第一个元素是0) 和 在每行的第二个和第三个元素之前放置所需的任何间距。您只需为每行使用不同的值即可更改每行的数字输出。
Pseudo-code since I don't know PHP (and you asked for the logic which tends to be the same across all procedural languages):
This will both output a line separator before elements 3, 6, 9 and so on (first element being 0) and place whatever desired spacing you want before the second and third elements on each line. You can just use a different value for
perline
to change the number output on each line.