php - Yii2 - Is there a way to write basic characters in search model and results show all queries with both basic and special characters?

one text

Solution:

Not a solution, but workaround. Store in your table separate name field with basic characters only. You can get it with: iconv('utf-8', 'ascii//TRANSLIT', $text);

Do the same with your search phrase. Search both, original phrase in original field and transliterated phrase in transliterated field.

You can also try with SOUNDEX or SOUNDS LIKE function, but those works with english letters only AFAIK.

Source