1Math.ceil(.95); // 1
2Math.ceil(4); // 4
3Math.ceil(7.004); // 8
4Math.ceil(-0.95); // -0
5Math.ceil(-4); // -4
6Math.ceil(-7.004); // -7
7
1ceil ( float $value ) : float
2Returns the next highest integer value by rounding up value if necessary.