作者 邓超

编码

... ... @@ -4,6 +4,8 @@ namespace Lib\Imap\Parse;
use Lib\Imap\Fun;
/**
* 解析邮件
* @author:dc
... ... @@ -101,10 +103,10 @@ class DeCode{
}
if (!$from) {
return mb_convert_encoding($str, $to);
return Fun::mb_convert_encoding($str, $to);
}
return mb_convert_encoding($str, $to, $from);
return Fun::mb_convert_encoding($str, $to, $from);
} catch (\Exception $e) {
if (strstr($from, '-')) {
... ...