- multi host, - , PHP, 5.4, reset default_charset /etc/php.../php.ini:
[PHP] :
default_charset = ""
It will not make install PHP UTF-8 encoding for all the php files, especially for the old or the national character set, such as windows-1251, windows-1257, iso-8859-1, iso-8859-2, ISO-8859-13, etc.
Or, if you are a developer, be sure to use Rob answer and add the code directly to you php application ini_set("default_charset", "");
source
share