Tag Archives: convert

PHP strtolower() special characters not converted

Description: After converting a string that contains special characters to lower case with strtolower(), the special characters don’t appear correct. Solution: strtolower() uses the current locale, not converting special characters. To avoid that use mb_strtolower() whic can take an additional … Continue reading

Posted in PhP | Tagged , , | 5 Comments