Modulus division returns an integer?
php
Solution
Yes. the `%` operator returns an integer.
If you want a floating point result, use the `fmod()` function instead.
Problem
Does modulus division only return integers? I need a float return. See the following: ``` var_dump(12 % 10); // returns 2, as expected var_dump(11.5 % 10); // returns 1 instead of 1.5? ```