How to make a function so that make floor all the number as times of 18?
example:
3 => 0 17 => 0 19 => 18 43 => 36 69 => 54
Thanks.
$a = 19; $a -= $a % 18; // => 18