| Conditions | 4 |
| Paths | 4 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | public static function contains($haystack, $needle, $ignoreCase = true) |
||
| 18 | { |
||
| 19 | if (false !== $ignoreCase) { |
||
| 20 | $function = function_exists('mb_stripos') ? 'mb_stripos' : 'stripos'; |
||
| 21 | } else { |
||
| 22 | $function = function_exists('mb_strpos') ? 'mb_strpos' : 'strpos'; |
||
| 23 | } |
||
| 24 | |||
| 25 | return false !== $function($haystack, $needle); |
||
| 26 | } |
||
| 28 |