Conditions | 4 |
Paths | 4 |
Total Lines | 13 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 4.0466 |
Changes | 2 | ||
Bugs | 2 | Features | 1 |
1 | <?php |
||
4059 | 83 | public static function is_utf8($str, bool $strict = false): bool |
|
4060 | { |
||
4061 | 83 | if (\is_array($str)) { |
|
4062 | 2 | foreach ($str as &$v) { |
|
4063 | 2 | if (!self::is_utf8($v, $strict)) { |
|
4064 | 2 | return false; |
|
4065 | } |
||
4066 | } |
||
4067 | |||
4068 | return true; |
||
4069 | } |
||
4070 | |||
4071 | 83 | return self::is_utf8_string((string) $str, $strict); |
|
4072 | } |
||
13694 |