我有一个用javascript格式化的表单,这使得数字看起来像:
10.000或2.300
<form>
<input type="text" name="price_1" value="2.300">
</form>
但我想将它们存储在没有点的mysql中。如何删除它们?
mysql_query("INSERT INTO prices price_a='price_1' WHERE id ='price_id'");
我看到money_format和number_format,但它只是格式化数字不会删除任何内容。
答案 0 :(得分:21)
试试这个:
str_replace(".", "", $string);
答案 1 :(得分:1)
答案 2 :(得分:1)
您可以使用str_replace()
功能。
echo str_replace(".", "", $value);
$ value将是10.000