DEV Community

Zubair Mohsin
Zubair Mohsin

Posted on

How do you deal with Money in PHP?

What's your take on dealing with money in PHP?

Use third party package like MoneyPHP?

Use decimal or integer datatype in MySQL and in PHP use BCMath to perform operations?

Latest comments (2)

Collapse
 
muhammadmp profile image
Muhammad MP

I just use integer for my local currency.

Collapse
 
peter279k profile image
peter279k

I usually use the moneyphp/money to accomplish this issue :).