Article Categories
- All Categories
-
Data Structure
-
Networking
-
RDBMS
-
Operating System
-
Java
-
MS Excel
-
iOS
-
HTML
-
CSS
-
Android
-
Python
-
C Programming
-
C++
-
C#
-
MongoDB
-
MySQL
-
Javascript
-
PHP
Selected Reading
floor() function in PHP
The ceil() function rounds a number down to the nearest integer.
Syntax
floor(num)
Parameters
num − The number to round up
Return
The floor() function Returns the value rounded up to the nearest (down) integer.
Example
<?php echo(floor(0.10) . "<
>"); echo(floor(0.55) ); ?>
Output
0 0
Let us see another example −
Example
<?php echo(floor(9)); ?>
Output
9
Let us see another example −
Example
<?php echo(floor(7.8) . "
"); echo(floor(-4.2)); ?>
Output
7 -5
Advertisements
