在Mysql我设置行中
name | type
total_price | decimal(15,4)
如果数据为999,则记录为999.0000,但如果数据为1000(带空格),则记录为1 我该如何解决?
我看着http://php.net/manual/en/function.number-format.php,但没有找到任何东西
答案 0 :(得分:1)
尝试一下
$var='1 000';
float(str_ireplace(' ','', $var));