- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
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