Conditions | 4 |
Paths | 4 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
25 | public static function contains($haystack, $needle, $ignoreCase = true) |
||
26 | { |
||
27 | if (false !== $ignoreCase) { |
||
28 | $function = function_exists('mb_stripos') ? 'mb_stripos' : 'stripos'; |
||
29 | } else { |
||
30 | $function = function_exists('mb_strpos') ? 'mb_strpos' : 'strpos'; |
||
31 | } |
||
32 | |||
33 | return false !== $function($haystack, $needle); |
||
34 | } |
||
41 |