如何检测数组中是否有第 1、4、7、10 等项?

发布于 2024-11-30 19:09:54 字数 298 浏览 0 评论 0原文

我正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

九命猫 2024-12-07 19:09:54

您需要取模运算符

($i % 3) == 1

对于 1、4、7、10 等也是如此。

You need the modulo operator:

($i % 3) == 1

This will be true for 1, 4, 7, 10, etc.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文