floor() 函数向下舍入为最接近的整数。

<?phpecho(floor(0.60));echo(floor(0.40));echo(floor(5));echo(floor(5.1));echo(floor(-5.1));echo(floor(-5.9))?>

输出:

0055-6-6

ceil() 函数向上舍入为最接近的整数。

<?phpecho(ceil(0.60);echo(ceil(0.40);echo(ceil(5);echo(ceil(5.1);echo(ceil(-5.1);echo(ceil(-5.9));?>

输出:

1156-5-5

round() 函数对浮点数进行四舍五入。

<?phpecho(round(0.60));echo(round(0.50));echo(round(0.49));echo(round(-4.40));echo(round(-4.60));?>

输出:

110-4-5