Conditions | 4 |
Paths | 3 |
Total Lines | 12 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 3 |
CRAP Score | 5.024 |
Changes | 0 |
1 | <?php |
||
10060 | public static function stripos_in_byte(string $haystack, string $needle, int $offset = 0) |
||
10061 | { |
||
10062 | 2 | if ($haystack === '' || $needle === '') { |
|
10063 | return false; |
||
10064 | } |
||
10065 | |||
10066 | 2 | if (self::$SUPPORT['mbstring_func_overload'] === true) { |
|
10067 | // "mb_" is available if overload is used, so use it ... |
||
10068 | return \mb_stripos($haystack, $needle, $offset, 'CP850'); // 8-BIT |
||
10069 | } |
||
10070 | |||
10071 | 2 | return \stripos($haystack, $needle, $offset); |
|
10072 | } |
||
13693 |