關(guān)于取模計(jì)算的問(wèn)題
<?php?
? ? ?$maxLine = 4; //每排人數(shù)
$no = 17;//學(xué)生編號(hào)
$line = ceil($no/$maxLine);
$row = $no%$maxLine?$no%$maxLine:$maxLine;
echo "編號(hào)<b>".$no."</b>的座位在第<b>".$line."</b>排第<b>".$row."</b>個(gè)位置";
?>
我都沒(méi)懂這都是什么意思,有哪位大神詳細(xì)講解下
2017-07-04
一個(gè)表達(dá)式的值除以另一個(gè)表達(dá)式的值,并返回余數(shù)。
number1 % number2
$no%$maxLine
$line ? 是計(jì)算出在第幾排
17/4 =1 ? ?//計(jì)算出是第一個(gè)位置