Coder-Spirit / php-bignumbers

A robust library to handle immutable big numbers inside PHP applications
MIT License
131 stars 29 forks source link

Round half even and odd #34

Open josecelano opened 9 years ago

josecelano commented 9 years ago

It would be nice to have the same round modes than round() PHP function:

http://php.net/manual/en/function.round.php

castarco commented 9 years ago

Buenas @josecelano ,

yep, it's an interesting idea :) . I'm working on a big refactoring of this library (currently I'm on the design phase) and I haven't many time for this feature, but if you know how to implement it, I invite you to make a pull request.

Thanks for the idea.

josecelano commented 9 years ago

I do not know how to do it (I have not thougth about it). I am using this library to implement a BigMoney class: https://github.com/mathiasverraes/money/issues/7 I am going to finish my implementation and I will try to find a solution.

josecelano commented 9 years ago

I have found this library: https://github.com/keiosweb/moneyright/blob/master/src/Math.php

castarco commented 9 years ago

@josecelano thx, I'll take a look.