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

 Live Demo

<?php
   echo(floor(0.10) . "<
>");    echo(floor(0.55) ); ?>

Output

0
0

Let us see another example −

Example

 Live Demo

<?php
   echo(floor(9));
?>

Output

9

Let us see another example −

Example

 Live Demo

<?php
   echo(floor(7.8) . "
");    echo(floor(-4.2)); ?>

Output

7
-5

Updated on: 26-Jun-2020

123 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements