PHP格式的数字没有小数点吗?

时间:2023-01-14 16:54:59

I have a number (as string) like this: 1.00000

我有一个像这样的数字(字符串):1.00000

How can I reformat such numbers to only look like 1?

如何将这些数字重新格式化为1?

Thanks

谢谢

1 个解决方案

#1


18  

Use number_format()

使用number_format()

echo number_format('1.000000'); // prints 1

Or use intval()

或者使用intval中()

echo intval('1.000000'); // prints 1

Or cast it as an integer

或者将其转换为整数

echo (int) '1.000000'; // prints 1

#1


18  

Use number_format()

使用number_format()

echo number_format('1.000000'); // prints 1

Or use intval()

或者使用intval中()

echo intval('1.000000'); // prints 1

Or cast it as an integer

或者将其转换为整数

echo (int) '1.000000'; // prints 1