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 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!
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.
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.)
Update 2016:
A couple of years later and hopefully a little bit wiser ;)
Since this answer still receives the occasional up- and down vote I felt the need to revise my answer. 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
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.
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.