-
-
Save eSkiSo/b3ea9de6cf4ba08504d04c6c2a6438b3 to your computer and use it in GitHub Desktop.
Math class
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 | |
class Math { | |
/** | |
* The base. | |
* | |
* @var string | |
*/ | |
private static $base = '0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ'; | |
/** | |
* Convert a from a given base to base 10. | |
* | |
* @param string $value | |
* @param int $base | |
* @return int | |
*/ | |
public static function to_base_10($value, $b = 62) | |
{ | |
$limit = strlen($value); | |
$result = strpos(static::$base, $value[0]); | |
for($i = 1; $i < $limit; $i++) | |
{ | |
$result = $b * $result + strpos(static::$base, $value[$i]); | |
} | |
return $result; | |
} | |
/** | |
* Convert from base 10 to another base. | |
* | |
* @param int $value | |
* @param int $base | |
* @return string | |
*/ | |
public static function to_base($value, $b = 62) | |
{ | |
$r = $value % $b; | |
$result = static::$base[$r]; | |
$q = floor($value / $b); | |
while ($q) | |
{ | |
$r = $q % $b; | |
$q = floor($q / $b); | |
$result = static::$base[$r].$result; | |
} | |
return $result; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment