首页 > 代码库 > php float 转int

php float 转int

round(x,prec)
参数描述
x可选。规定要舍入的数字。
prec可选。规定小数点后的位数。
<?phpecho(round(0.60));echo(round(0.50));echo(round(0.49));echo(round(-4.40));echo(round(-4.60));?>

输出:

110-4-5
 

php float 转int