针对mysql数据库取出小数丢失精度

数据库存的0.03取出变成0.02999999,

解决方法,

保留两位小数四舍五入

echo sprintf("%.2f", $num);  

你可能感兴趣的:(针对mysql数据库取出小数丢失精度)