Unicode::convertToUtf8

public static Unicode::convertToUtf8($data, $encoding)

Converts data to UTF-8.

Requires the iconv, GNU recode or mbstring PHP extension.

Parameters

string $data: The data to be converted.

string $encoding: The encoding that the data is in.

Return value

string|bool Converted data or FALSE.

File

core/lib/Drupal/Component/Utility/Unicode.php, line 226

Class

Unicode
Provides Unicode-related conversions and operations.

Namespace

Drupal\Component\Utility

Code

public static function convertToUtf8($data, $encoding) {
  if (function_exists('iconv')) {
    return @iconv($encoding, 'utf-8', $data);
  }
  elseif (function_exists('mb_convert_encoding')) {
    return @mb_convert_encoding($data, 'utf-8', $encoding);
  }
  elseif (function_exists('recode_string')) {
    return @recode_string($encoding . '..utf-8', $data);
  }
  // Cannot convert.
  return FALSE;
}
doc_Drupal
2016-10-29 09:50:21
Comments
Leave a Comment

Please login to continue.