PHP's default internal encoding is set to "ISO-8859-7". But the domxml extension of php is using "UTF-8" encoding. To use the domxml extension, all values must be converted with the "utf8_encode()" function. A second extension that uses "UTF-8" encoding is my OCI8 connection to oracle.
So I'd like to set the internal encoding of php to "UTF-8". Searching the net I found 2 php extensions for this: iconf and mbstring. I tested both of them, but they work terribly and it's very difficult to find any information about those 2 extensions.
Can anyone give me some information about internal encoding in php, and how you can configure it?