-
-
Save Microtribute/12a9d029b27ca5746f533963b33caf64 to your computer and use it in GitHub Desktop.
Math class from Taylor Otwell. Thanks to @brad ([email protected]) for the class content.
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