Skip to content

Instantly share code, notes, and snippets.

@yungke
Created January 14, 2016 06:15
Show Gist options
  • Save yungke/a748e82022b3aacf5fe4 to your computer and use it in GitHub Desktop.
Save yungke/a748e82022b3aacf5fe4 to your computer and use it in GitHub Desktop.
joomla_string
if (function_exists('iconv') && PHP_VERSION_ID < 50600)
{
// These are settings that can be set inside code
iconv_set_encoding("internal_encoding", "UTF-8");
iconv_set_encoding("input_encoding", "UTF-8");
iconv_set_encoding("output_encoding", "UTF-8");
}
elseif (PHP_VERSION_ID >= 50600)
{
ini_set("default_charset", "UTF-8");
}
if (function_exists('iconv'))
{
// These are settings that can be set inside code
iconv_set_encoding("internal_encoding", "UTF-8");
iconv_set_encoding("input_encoding", "UTF-8");
iconv_set_encoding("output_encoding", "UTF-8");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment