如果$ i为10,则10/2 = 5,没有剩余,因此$ i模数2将为0。
如果$ i为10,则10/3 = 3,剩余为1,因此$ i模数3将为1。
为了使您更容易跟踪项目的数量,我将$ i从1而不是0开始。例如
for($i=1; $i <= $count; $i++) if($i % 2 == 0) echo 'This number is even as it is divisible by 2 with no leftovers! Horray!';
欢迎分享,转载请注明来源:内存溢出
如果$ i为10,则10/2 = 5,没有剩余,因此$ i模数2将为0。
如果$ i为10,则10/3 = 3,剩余为1,因此$ i模数3将为1。
为了使您更容易跟踪项目的数量,我将$ i从1而不是0开始。例如
for($i=1; $i <= $count; $i++) if($i % 2 == 0) echo 'This number is even as it is divisible by 2 with no leftovers! Horray!';
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)