Conditions | 4 |
Paths | 3 |
Total Lines | 16 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 4 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
6622 | 12 | public static function str_last_char( |
|
6623 | string $str, |
||
6624 | int $n = 1, |
||
6625 | string $encoding = 'UTF-8' |
||
6626 | ): string { |
||
6627 | 12 | if ($str === '' || $n <= 0) { |
|
6628 | 4 | return ''; |
|
6629 | } |
||
6630 | |||
6631 | 8 | if ($encoding === 'UTF-8') { |
|
6632 | 4 | return (string) \mb_substr($str, -$n); |
|
6633 | } |
||
6634 | |||
6635 | 4 | $encoding = self::normalize_encoding($encoding, 'UTF-8'); |
|
6636 | |||
6637 | 4 | return (string) self::substr($str, -$n, null, $encoding); |
|
6638 | } |
||
13722 |