php mysql decimal 多余的0 解决方案
select id,(0+cast(price as decimal(10,2))) as price,title from goods where id=1
以上mysql的方法 但是PHP读取出来有时候还是带0
所以最靠谱的方法 数据库读取出来 用PHP处理下
echo floatval(0.200); exit();
读取出来的就是0.2
原创文章,作者:奋斗,如若转载,请注明出处:https://blog.ytso.com/4023.html