任何人都可以請建議一種方法來刪除小數點後的所有零點。小數點後刪除小數點後的零點
我需要的數字改變如下:
232.20 should be converted to 232.2
232.00 should be converted to 232
232.22 should be the same
確實number_format()
幫助以任何方式?
任何人都可以請建議一種方法來刪除小數點後的所有零點。小數點後刪除小數點後的零點
我需要的數字改變如下:
232.20 should be converted to 232.2
232.00 should be converted to 232
232.22 should be the same
確實number_format()
幫助以任何方式?
您可以使用floatval()
:
echo floatval('12.00');
// 12
echo floatval('66.70');
// 66.7
echo floatval('44.011');
// 44.011
謝謝你..我的作品 – ashwin
只需添加了一個零
echo 232.20 + 0; // 232.2
echo 232.00 + 0; // 232
echo 232.22 + 0; // 232.22
我已引用,因此質疑Remove useless zero digits from decimals in PHP
請有看看
謝謝你..我的作品 – ashwin
檢查此答案http://stackoverflow.com/a/14531760/2968762 – Abhi
可能重複的[從PHP中刪除無用的零數字小數](http://stackoverflow.com/questions/14531679/remove-useless- 0位小數) – Abhi