元のポスターはモジュロで明確ではなかったので、次にそれが必要になったときに使用できるように、それがどのように機能するかを説明するのに役立つと思います. モジュロ演算子 (%) は、2 つのオペランド間の除算の余りを決定することによって機能します。
モジュロのルールは次のとおりです。
if left < right: left % right = left
if left > right: left % right = remainder of left / right
例えば:
- 1 % 6 = 1 ( 1 < 6 so the answer is 1 )
- 7 % 6 = 1 ( 7/6 = 1 with remainder of 1 )
- 10 % 6 = 4 ( 10/6 = 1 remainder of 4 )
- 6 % 6 = 0 ( 6/6 = 1 with 0 remainder )
したがって、あなたの場合、123 (それぞれ 1,2,3 % 6 の場合) が得られ、4,5,6 % 3 では 450 が得られます。次に、7,8,9 % 6 では 123 が得られます。10,11, 12 は再び 450 になり、それが永遠に続きます。したがって、コードは次のようになります。
// check that list count is less than three but not = 0
// (only true when mod yields 1,2, or 3)
if($listCount % 6 < 3 && $listCount % 6 == 0){
$alternateRow = "rowOdd";
} else {
$alternateRow = "rowEven";
}