Calculate mod in php

4

How can I calculate 15,625 mod 23 in PHP only?

I searched Google and other resources and did not succeed in my search, could you give me more information?

    
asked by anonymous 09.02.2015 / 19:00

1 answer

4

You should do this:

echo 15.625 % 23;

Font

    
09.02.2015 / 19:00