php开发中如何去掉小数点后的内容

2025年01月21日 建站教程

php开发中如何利用number_format()等函数去掉小数点后的内容,下面web建站小编给大家详细介绍一下具体实现方法!

利用number_format()函数

// 保留1位小数
$num = 3.1415;
echo number_format($num, 2); // 3.1

// 去掉小数
$num = 3.1415;
echo number_format($num, 0); // 3

利用intval()函数

$num = 3.1415;
echo intval($num); // 3

利用floor()函数

$num = 3.1415;
echo floor($num); // 3

本文链接:http://so.lmcjl.com/news/21762/

展开阅读全文
相关内容