gpt4 book ai didi

php - 如何从数字中删除点?

转载 作者:可可西里 更新时间:2023-11-01 06:38:59 24 4
gpt4 key购买 nike

我有一个用 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,但它只是格式化数字不会删除任何内容。

最佳答案

试试这个:

str_replace(".", "", $string);

关于php - 如何从数字中删除点?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14558343/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com