X-Git-Url: http://git.pk910.de/?p=PHP-P10.git;a=blobdiff_plain;f=Uplink%2FNumerics.class.php;h=3de23e13061418b6aae8c8b101ef520b472e8880;hp=87cb6426f191b65bb67742ef8b96ebf434313ad5;hb=811bc0c7a1f583fb624a0f8c3601146e063c5a25;hpb=55c45ccc4c5422ddd9ca3bb8840b5e75aa4184bc diff --git a/Uplink/Numerics.class.php b/Uplink/Numerics.class.php index 87cb642..3de23e1 100644 --- a/Uplink/Numerics.class.php +++ b/Uplink/Numerics.class.php @@ -1,22 +1,19 @@ . * * * ************************************************************************ * @@ -24,20 +21,6 @@ * * P10 numeric functions * - ************************************************************************ - * accessable functions - * - * static String intToNum(int $int, int $length) - * returns the numeric representing $int - * - * static int numToInt(String $numeric) - * returns the integer value, the numeric represents - * - * static String parseIP(String $numeric) - * parses an IP Address in numeric format - * - * static String numericFromIP(String $ip) - * builds a numeric representing the IP */ class Numerics { @@ -58,6 +41,7 @@ class Numerics { $base = $base * self::$base64charsLength; } $posValue = floor($int / $base); + $int -= $posValue * $base; //get the char representing $posValue $posChar = self::$base64chars[$posValue]; $numeric .= $posChar;