As you know, we need to use mb_strtolower() instead of strtolower() while we’re working with utf-8 data:
$str = 'برنامه';
echo strtolower($str);
----------------------
output: �����
It’s all gone to undefined chars, now I use mb_strtolower()
$str = 'برنامه';
echo mb_strtolower($str);
----------------------
output: �����
still the same results, now:
$str = 'برنامه';
echo mb_strtolower($str, mb_detect_encoding($str));
----------------------
output: برنامه
Now it’s fixed, so the way to use mb_strtolower is to also having mb_detect_encoding.
Now my problem is that I want to do the same thing with array_map:
$results_array = array_map('mb_strtolower', $results_array);
How I’m supposed to use mb_detect_encoding with the above line?
The solution is to tell
mb_strtolowerwhat your string encoding is:If you don’t want to supply this parameter every time, set it once for all
mb_functions:Then you can call any
mb_function and it will handle your string as UTF-8:mb_detect_encodinghappens to return'UTF-8'because it detected it, but it is generally unreliable, since it’s conceptually impossible to reliably detect arbitrarily encoded strings. Know what your strings are encoded in and pass this information explicitly.