如何检测数组中是否有第 1、4、7、10 等项?
我正在尝试使用 php 通过循环数组来输出 3 列网格的框。我需要能够检测第一个、第四个、第七个...等元素(即每行的每个框)并向该框添加一个类。
for($i = 0; $i < 30; $i++) {
$output .= '<div' . ($i == (1st box in each row) ? ' class="first"' : '') . '>Box ' . $i . '</div>';
}
在上面的示例中,我正在寻找正确的代码来替换括号中的 sudo 代码。
I'm trying to output a 3 column grid of boxes using php by cycling an array. I need to be able to detect the first, 4th, 7th ...etc element (i.e each box for every row) and add a class to that box.
for($i = 0; $i < 30; $i++) {
$output .= '<div' . ($i == (1st box in each row) ? ' class="first"' : '') . '>Box ' . $i . '</div>';
}
In my above example I'm looking for the correct code to replace the sudo code in brackets.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要取模运算符:
对于 1、4、7、10 等也是如此。
You need the modulo operator:
This will be true for 1, 4, 7, 10, etc.