计算小于指定数的最大整数。
语法: int floor(float number);
返回值: 整数
函数种类: 数学运算
本函数用来计算比浮点参数 number 小的最大整数。
本例返回值为 3。<?php$lastint=floor(3.14);echo $lastint;?>
Ceil() round()