Skip to content
Snippets Groups Projects
Commit e6828006 authored by Steven Wittens's avatar Steven Wittens
Browse files

- #18319: Move encoding conversion out of drupal_xml_parser_create() so it can be used by modules.

parent f7c8a2c0
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
...@@ -1643,20 +1643,7 @@ function drupal_xml_parser_create(&$data) { ...@@ -1643,20 +1643,7 @@ function drupal_xml_parser_create(&$data) {
// Requires the iconv, GNU recode or mbstring PHP extension. // Requires the iconv, GNU recode or mbstring PHP extension.
$php_supported = array('utf-8', 'iso-8859-1', 'us-ascii'); $php_supported = array('utf-8', 'iso-8859-1', 'us-ascii');
if (!in_array(strtolower($encoding), $php_supported)) { if (!in_array(strtolower($encoding), $php_supported)) {
if (function_exists('iconv')) { $out = drupal_convert_to_utf8($data, $encoding);
$out = @iconv($encoding, 'utf-8', $data);
}
else if (function_exists('mb_convert_encoding')) {
$out = @mb_convert_encoding($data, 'utf-8', $encoding);
}
else if (function_exists('recode_string')) {
$out = @recode_string($encoding . '..utf-8', $data);
}
else {
watchdog('php', t("Unsupported XML encoding '%s'. Please install iconv, GNU recode or mbstring for PHP.", $encoding), WATCHDOG_ERROR);
return 0;
}
if ($out !== false) { if ($out !== false) {
$data = $out; $data = $out;
$encoding = 'utf-8'; $encoding = 'utf-8';
...@@ -1672,6 +1659,34 @@ function drupal_xml_parser_create(&$data) { ...@@ -1672,6 +1659,34 @@ function drupal_xml_parser_create(&$data) {
return $xml_parser; return $xml_parser;
} }
/**
* Convert data to UTF-8
*
* @param $data
* The data to be converted.
* @param $encoding
* The encoding that the data is in
* @return
* Converted data or FALSE.
*/
function drupal_convert_to_utf8($data, $encoding) {
if (function_exists('iconv')) {
$out = @iconv($encoding, 'utf-8', $data);
}
else if (function_exists('mb_convert_encoding')) {
$out = @mb_convert_encoding($data, 'utf-8', $encoding);
}
else if (function_exists('recode_string')) {
$out = @recode_string($encoding . '..utf-8', $data);
}
else {
watchdog('php', t("Unsupported encoding '%s'. Please install iconv, GNU recode or mbstring for PHP.", $encoding), WATCHDOG_ERROR);
return FALSE;
}
return $out;
}
/** /**
* Truncate a UTF-8-encoded string safely. * Truncate a UTF-8-encoded string safely.
* *
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment