开发者

Best practice for working with currency values in PHP?

I need to add, multiply and compare currency values in PHP and need to be sure that it is exact down to a single cent.

One way is to store everything in float, use round before and after each operation and mind machine epsilon when comparing for equality. Quite cumbersome imho.

Another way is to store the whole thing开发者_StackOverflow社区 as cents in integer data types, plus remember to convert back and forth anytime I work with the database (mysql, where I use the decimal data type). Inelegant, and many error pitfalls, imho.

Another way is to invent my own "datatype", store all values in strings ("34.12") and create my own mathematical replacement functions. These function would convert the value to integers internally, do the calculation and output the result again a strings. Suprisingly complicated, imho.

My question: what is the best practice for working with currency values in PHP? Thanks!


As of MySQL v5.0.3, MySQLs DECIMAL datatype stores an exact decimal number, i.e. not an inaccurate floating point representation.

To correctly manipulate precision numbers in PHP use the arbitrary precision math functions. Internally this library manipulates text strings.

Currency is intended to be stored as a decimal number, you can get units of money smaller than cents. You should only round any values when displaying the figures, not during manipulation or storage.


Update 2016:

I absolutely do not advise storing 'money' as integers anymore. The only true answer is Andrew Dunn's: Use Mysql's DECIMAL type and encapsulate php's bc_* functions in a Currency class.


I will keep my outdated answer here for completeness sake

You should always work with integers. Store the values as ints in your database, use ints to do calculations and when, and only when, you want to print it, convert it to some readable format.

This way you completeley circumvent floating point problems, which, generally, is a big problem when working with money ;)

Edit: One thing worth mentioning: You need to think about precision before you start working this way. As others have pointed out, you might need to work with values smaller than a cent, so you need to do your multiplication/division accordingly. (ie currency * 1000 for a .001 precision)


Let me answer this myself. Best practice would be to create a "money amount" class. This class stores the amount internally as cents in integers, and offers getters, setters, math functions like add, subtract and compare. Much cleaner.


Keep the values as cents and use integers. Write classes or helper functions to encapsulate displaying in the UI and handling values in your database queries. If you use float, there is too much risk you'll lose a cent somewhere.


I tried multiplying the floats by 100 before all mathematical operations, then dividing by 100 before displaying the result. (It worked!)

Mathematically, that's "converting to integers" like everyone else is suggesting, but the code looks a lot more elegant without any conversion functions. Also, to avoid confusion down the line, I just added "Cents" to the end of any value names.

From the machine side, it's probably faster to use integers instead of float, but writing human-readable code I prefer my solution. (Your mileage may vary, but it worked in my application.)

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜