Created
April 3, 2019 13:58
-
-
Save farhadhp/22ced3bc686c4d25a2091e4b0ecbead0 to your computer and use it in GitHub Desktop.
floor in php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Author: Farhad Hassan pour | |
* Author url: https://farhadhp.ir | |
* Description: floor — Round fractions down | |
*/ | |
// example | |
echo floor(4.9); // Output: 4 | |
echo floor(8.2); // Output: 8 | |
echo floor(-4.50); // Output: 5 | |
echo floor(1.9999999); // Output: 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment