/**
  * 转换编码
  * @param int $origen 原始字符串
  * @param String $from_charset 原始编码 Big5, GBK, Utf-8, ISO-8851-1 ...
  * @param String $to_charset 目标编码
  */
 function convert($origen, $from_charset, $to_charset)
 {
     return Charset::instance($from_charset, $to_charset)->Convert($origen);
 }