Пример #1
0
 /**
  * Converts a single unicode character represended by an integer
  * to an UTF-8 chracter
  *
  * @param int $char The unicode character as an integer
  *
  * @return string The UTF-8 character.
  */
 private static function _unicodeToUtf8($char)
 {
     return I18N_UnicodeString::unicodeCharToUtf8($char);
 }