我花了很多时间试图解决这个问题 - 运气不好,所以我来这里寻求帮助。
我将如何使用 php 模数运算符并循环遍历数组但将数组值放置在每第 5 个位置(见下图)
“...”将从 mysql 查询数组中替换。
查询示例:
$result = $mysqli->query("SELECT id, username, volume, name, content, image, cssanimate, group_name FROM table_1 ");
希望这张图能说明:
数组示例:
$my_array = array("Tesla", "BMW", "Ford", "Jeep");
一些代码:
$counter = 0;
while ($row = $result->fetch_assoc()) {
$counter++;
if(($counter % 5 == 0) || $counter==1 ) {
}
}
感谢您的帮助:)
慕哥6287543