GoDaddy does not provide the mbstring module for shared hosting. But I have to use mb_strtolower() .
mb_strtolower()
I am working on utf-8 charset, what can I use instead of mb_strtolower($string,'UTF-8') ?
utf-8
mb_strtolower($string,'UTF-8')
Edit: I am converting Polish characters.
See FluxBB UTF-8 module: https://github.com/fluxbb/utf8
Perhaps you could try using PCRE functions, for example:
$string_lower = preg_replace('/^(.*)$/', '\L$1', $string);
Source: https://habr.com/ru/post/1342495/More articles:programmatically moving the mouse when the computer is locked - windowsSelect the most recent record in the child - sqlWebmachine with http and https? - erlangScala: What is the most efficient way to convert a map [K, V] to IntMap [V]? - scalaCustomizing ListGrid selection in SmartGWT - gwtCannot get random.shuffle result form in python - pythonchanging default sorting to jqgrid - sortingHow to remove characters from a string before the first char - is this a letter? - stringWhat is the best way to process the source data files in a web application? - pythonProblem with local pointer - cAll Articles