This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: Ignoring special characters

#28095
msamavi64msamavi64
Participant

Hi Ernest,

One issue regarding small and capital letters (case sensitivity):

If we use:

$original = array(
‘Ā’, ‘ā’
);
$replace = array(
‘A’, ‘a’
);

Only search string “Ava” will find the post title “Āvā”. How to make it case insensitive so that it can also be found with search strings like: “ava” or “avA” ?

Regards,
Majid