Joh*_*nde 23
echo number_format('1.000000'); // prints 1
Run Code Online (Sandbox Code Playgroud)
或者使用 intval()
echo intval('1.000000'); // prints 1
Run Code Online (Sandbox Code Playgroud)
或者将其转换为整数
echo (int) '1.000000'; // prints 1
Run Code Online (Sandbox Code Playgroud)