'How to perform case insensitive str_contains?

I have plenty of if(mb_stripos($hay, $needle) !== false) in my code. How do I replace it with str_contains()?

For example, I have this helper function in my code:

<?php

function str_contains_old(string $hay, string $needle): bool
{
    return mb_stripos($hay, $needle) !== false;
}

$str1 = 'Hello world!';
$str2 = 'hello';
var_dump(str_contains_old($str1, $str2)); // gives bool(true)

$str1 = 'Część';
$str2 = 'cZĘŚĆ';
var_dump(str_contains_old($str1, $str2)); // gives bool(true)

$str1 = 'Część';
$str2 = 'czesc';
var_dump(str_contains_old($str1, $str2)); // gives bool(false)

How to make it work with new str_contains()?

var_dump(str_contains('Hello world!', 'hello')); // gives bool(false)

Demo



Solution 1:[1]

Just convert both string and haystack to lowercase beforehand

$string = strtolower($originalString);
$haystack = strtolower($originalHaystack);
$isMatched = str_contains($originalHaystack,$originalString);

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Gita Prasetya Adiguna