PHP floor() Function Last Updated : 23 Jul, 2025 Comments Improve Suggest changes Like Article Like Report We sometimes need to round down the float values to the next lowest integer in our maths problems. PHP provides a built-in function floor() to get this task done through our PHP script. The floor() function in PHP rounds down the float value to the next lowest integer value. Syntax: float floor(value) Parameters: This function accepts the single parameter value which is rounded down to the next lowest integer. Return Value: The return type is a float value. It returns the next lowest integer value as a float which is rounded down, only if necessary. Examples: Input : floor(1.9) Output : 1 Input : floor(-1.8) Output : -2 Input : floor(4) Output : 4 Note: floor() function is opposite to ceil() function in PHP Below programs illustrate the floor() function in PHP. When a positive decimal number is passed. PHP <?php echo floor(2.8); ?> Output: 2When a negative decimal number is passed. PHP <?php echo floor(-3.4); ?> Output: -4When a number without decimal places is passed. PHP <?php echo floor(2); ?> Output: 2 Reference: https://www.php.net/manual/en/function.floor Comment G girish_nikam Follow Improve G girish_nikam Follow Improve Article Tags : Web Technologies PHP PHP Programs Explore PHP Tutorial 8 min read BasicsPHP Syntax 4 min read PHP Variables 5 min read PHP | Functions 8 min read PHP Loops 4 min read ArrayPHP Arrays 5 min read PHP Associative Arrays 4 min read Multidimensional arrays in PHP 5 min read Sorting Arrays in PHP 4 min read OOPs & InterfacesPHP Classes 2 min read PHP | Constructors and Destructors 5 min read PHP Access Modifiers 4 min read Multiple Inheritance in PHP 4 min read MySQL DatabasePHP | MySQL Database Introduction 4 min read PHP Database connection 2 min read PHP | MySQL ( Creating Database ) 3 min read PHP | MySQL ( Creating Table ) 3 min read PHP AdvancePHP Superglobals 6 min read PHP | Regular Expressions 12 min read PHP Form Handling 4 min read PHP File Handling 4 min read PHP | Uploading File 3 min read PHP Cookies 9 min read PHP | Sessions 7 min read Like