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 |
||
7163 | 12 | public static function str_last_char( |
|
7164 | string $str, |
||
7165 | int $n = 1, |
||
7166 | string $encoding = 'UTF-8' |
||
7167 | ): string { |
||
7168 | 12 | if ($str === '' || $n <= 0) { |
|
7169 | 4 | return ''; |
|
7170 | } |
||
7171 | |||
7172 | 8 | if ($encoding === 'UTF-8') { |
|
7173 | 4 | return (string) \mb_substr($str, -$n); |
|
7174 | } |
||
7175 | |||
7176 | 4 | $encoding = self::normalize_encoding($encoding, 'UTF-8'); |
|
7177 | |||
7178 | 4 | return (string) self::substr($str, -$n, null, $encoding); |
|
7179 | } |
||
14792 |