dongyi1524 2017-11-21 10:36
浏览 22
已采纳

如何在PHP和MySQL中使用货币值?

Now I store balance field in MySQL like decimial(15, 2). And in PHP I use the bcmath library for operations:

bccomp($currentBalance, 100.15, 2) - for check if user have enough money. bcadd($currentBalance, 100) - for increase user balance.

And etc.

This is working correctly, but BCMath doc says:

Passing values of type float to a BCMath function which expects a string as operand may not have the desired effect due to the way PHP converts float values to string, namely that the string may be in exponential notation (what is not supported by BCMath), and that the decimal separator is locale dependend (while BCMath always expects a decimal point).

So I want to avoid surprises. What is the right way to deal with money?

  • 写回答

2条回答 默认 最新

  • duancha1065 2017-11-21 10:40
    关注

    As integers. Convert 100.15 to 10015 and keep track of the currency so you know how many decimal places to apply when displaying.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 pnpm 下载element-plus
  • ¥15 解决编写PyDracula时遇到的问题
  • ¥15 有没有人能解决下这个问题吗,本人不会编程
  • ¥15 plotBAPC画图出错
  • ¥30 关于#opencv#的问题:使用大疆无人机拍摄水稻田间图像,拼接成tif图片,用什么方法可以识别并框选出水稻作物行
  • ¥15 Python卡尔曼滤波融合
  • ¥20 iOS绕地区网络检测
  • ¥15 python验证码滑块图像识别
  • ¥15 根据背景及设计要求撰写设计报告
  • ¥20 能提供一下思路或者代码吗