Tagged Questions
2
votes
1answer
520 views
What does set_locale(LC_CTYPE, 'C'); actually do?
When my PHP script is run with UTF-8 encoding, using non-ascii characters, some PHP functions like strtolower() don't work. I could use mb_strtolower, but this script can be run on all sorts of ...
2
votes
3answers
1k views
C++ ctype facet for UTF-8 in mingw
In a project all internal strings are kept in utf-8 encoding. The project is ported to Linux and Windows. There is a need for a to_lower functionality now.
On POSIX OS I could use ...