如何在 php 中将格式化数字更改回原始数字
我正在使用 jquery 数字格式化程序来格式化数字。
http://code.google.com/p/jquery-numberformatter/
$('#decnum').blur(function(){
$(this).parseNumber({format:"#,###.00", locale:"us"});
$(this).formatNumber({format:"#,###.00", locale:"us"});
});
我需要像这样的格式化数字->232,000.00 用于演示。但我需要存储在数据库中的内容不应该是这样的。 如何将其转换回 php 格式?
I'm using jquery number formatter to format numbers.
http://code.google.com/p/jquery-numberformatter/
$('#decnum').blur(function(){
$(this).parseNumber({format:"#,###.00", locale:"us"});
$(this).formatNumber({format:"#,###.00", locale:"us"});
});
I need the formatted numbers like this->232,000.00 for presentation. But what I need to store in the database shouldn't look like that.
How do I transform it back in php?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果逗号给您带来麻烦,请尝试以下操作:
或者如果您想要整数:
If the commas are giving you trouble, try this:
or if you want integers:
preg_replace 会做你想做的。
preg_replace will do what you want.
另一种思考方式:所有其他答案都提供转换,但我们假设您有更复杂的东西:
隐藏原始数据并仅显示合适的数字怎么样?
当您调用保存代码时,您只需检索原始数据。
所以你的 html 会是这样的
Another way of thinking : all the other answers are providing conversions, but let's suppose you have something more complicate :
What about hiding the original data, and display only the nice number.
When you're calling your saving code, you just retrieve the original data.
So your html will be something like this