PHP floor() Function Last Updated : 23 Jul, 2025 Comments Improve Suggest changes 2 Likes 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 Create Quiz Comment G girish_nikam Follow 2 Improve G girish_nikam Follow 2 Improve Article Tags : Web Technologies PHP PHP Programs Explore BasicsPHP Syntax4 min readPHP Variables5 min readPHP | Functions6 min readPHP Loops4 min readArrayPHP Arrays5 min readPHP Associative Arrays4 min readMultidimensional arrays in PHP5 min readSorting Arrays in PHP4 min readOOPs & InterfacesPHP Classes2 min readPHP | Constructors and Destructors5 min readPHP Access Modifiers4 min readMultiple Inheritance in PHP4 min readMySQL DatabasePHP | MySQL Database Introduction4 min readPHP Database connection2 min readPHP | MySQL ( Creating Database )3 min readPHP | MySQL ( Creating Table )3 min readPHP AdvancePHP Superglobals6 min readPHP | Regular Expressions12 min readPHP Form Handling4 min readPHP File Handling4 min readPHP | Uploading File3 min readPHP Cookies9 min readPHP | Sessions7 min read Like