In PHP 5.6 the following configuration variables have been deprecated:
mbstring.internal_encoding
mbstring.http_input
mbstring.http_output
Instead we are told that PHP 5.6 and later users should leave these empty and set default_charset instead. Now, my understand of mbstring.encoding_translation
is that it turns on conversion of http POST data from mbstring.http_input
to mbstring.internal_encoding
But if we use a single variable for both of these, then we get conversion of http POST data from default_charset
to... default_charset
? That's a no-op. So is there any purpose to mbstring.encoding_translation
anymore?