Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
43 | 8 | public static function base62To10(string $number): int |
|
44 | { |
||
45 | 8 | $limit = strlen($number); |
|
46 | 8 | $result = strpos(static::ALPHABET, $number[0]); |
|
47 | |||
48 | 8 | for ($i = 1; $i < $limit; $i++) { |
|
49 | 4 | $result = 62 * $result + strpos(static::ALPHABET, $number[$i]); |
|
50 | } |
||
51 | |||
52 | 8 | return $result; |
|
53 | } |
||
54 | } |
||
55 |