Last active
May 15, 2017 13:07
-
-
Save pyronaur/4c2eed4f9995c9ffe102482b5a551454 to your computer and use it in GitHub Desktop.
Calculate downloads floor
This file contains 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 | |
function download_floor($downloads) { | |
$length = strlen( $downloads ); | |
$divider = intval( '1' . str_repeat( '0', $length - 1 ) ); | |
return floor( $downloads / $divider ) * $divider; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment