Conditions | 4 |
Paths | 8 |
Total Lines | 8 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 4 |
Changes | 0 |
1 | <?php |
||
21 | 16 | public static function mb_ord(string $str): int |
|
22 | { |
||
23 | 16 | $len = strlen($str); |
|
24 | 16 | $char = (1 < $len) ? substr($str, $len - 1) : $str; |
|
25 | 16 | $next = (1 < $len) ? substr($str, 0, $len - 1) : '' ; |
|
26 | 16 | return |
|
27 | 16 | ( (!empty($next)) ? ( static::mb_ord($next) * 256 ) : 0 ) |
|
28 | 16 | + ord($char) ; |
|
29 | } |
||
45 |