公式什么的都忘了
三元表达式,解释为若 $row > 0则$line=$x+1,否则$line=$x;
上面那个符号打错。。。
$line = $row > 0 ? $x + 1 : $x;
三元表达式,解释为若 $row < 0则$line=$x+1,否则$line=$x;