php楼层数量为18次

时间:2012-08-18 17:19:16

标签: php floor

如何制作一个函数,使得所有数字都是18的次数?

示例:

3 => 0

17 => 0

19 => 18

43 => 36

69 => 54

感谢。

2 个答案:

答案 0 :(得分:7)

$a = 19;
$a -= $a % 18; // => 18

答案 1 :(得分:2)

使用模数运算符(%)

 $a % $b = gives the remainder of $a divided by $b.

在你的情况下,

 $a = 3;
 $a = $a - ($a % 18);