Skip to content

Instantly share code, notes, and snippets.

@farhadhp
Created April 3, 2019 13:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save farhadhp/22ced3bc686c4d25a2091e4b0ecbead0 to your computer and use it in GitHub Desktop.
Save farhadhp/22ced3bc686c4d25a2091e4b0ecbead0 to your computer and use it in GitHub Desktop.
floor in php
<?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