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 |
||
6576 | 12 | public static function str_last_char( |
|
6577 | string $str, |
||
6578 | int $n = 1, |
||
6579 | string $encoding = 'UTF-8' |
||
6580 | ): string { |
||
6581 | 12 | if ($str === '' || $n <= 0) { |
|
6582 | 4 | return ''; |
|
6583 | } |
||
6584 | |||
6585 | 8 | if ($encoding === 'UTF-8') { |
|
6586 | 4 | return (string) \mb_substr($str, -$n); |
|
6587 | } |
||
6588 | |||
6589 | 4 | $encoding = self::normalize_encoding($encoding, 'UTF-8'); |
|
6590 | |||
6591 | 4 | return (string) self::substr($str, -$n, null, $encoding); |
|
6592 | } |
||
13694 |