gpt4 book ai didi

php - 以间隔打破长回显数组内容

转载 作者:太空宇宙 更新时间:2023-11-04 16:00:54 26 4
gpt4 key购买 nike

我需要你帮助我的脚本。我正在尝试将一些查询内容回显到 html 表中,但我想在每个第 7 个参数处中断它。下面的脚本只打破了前七个,其余的没有间隔地打破,它们也从 html 表中回显。

请问我该怎么做。感谢您的宝贵时间和帮助。

echo "<table class=\"altrowstable\" bgcolor = gold >\n";
$count = 0;

echo "<tr align= \"center\">\n";

$carry_over = array();
$score_count = mysql_numrows($query8);

echo "<td>" . "Failed: ";
if ($score_count !== 0) {
while ($row8 = mysql_fetch_assoc($query8)) {
echo "<th>" . $row8['course_code'] . "</th>";
if ($count == 7) {
echo "</tr>\n";
echo "</table>";

}
}
}

最佳答案

使用模运算符代替相等

if ( ($count+1) % 7 ){

+1 在那里,所以它不会在 $count == 0 上立即中断,因为 0%n 是 0

关于php - 以间隔打破长回显数组内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9815509/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com