Conditions | 4 |
Paths | 2 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 4.0466 |
Changes | 0 |
1 | <?php |
||
8 | 9 | protected function getStringLength($str) |
|
9 | { |
||
10 | 9 | if (function_exists('mb_strlen')) { |
|
11 | 9 | return mb_strlen( |
|
12 | 9 | $str, |
|
13 | 9 | (isset($this->options['encoding']) && $this->options['encoding']) ? |
|
14 | 9 | $this->options['encoding'] : mb_internal_encoding() |
|
15 | ); |
||
16 | } |
||
17 | |||
18 | return strlen($str); |
||
19 | } |
||
20 | } |
||
21 |