我正在解析带有附件的MIME格式的电子邮件。附件的文件名使用RFC2231编码,因此例如其中一个附件的'content-disposition'是:
attachment; filename*=utf-8''Bill%20Sixteen.pdf
如何解码该文件名?
答案 0 :(得分:1)
akelos Framework似乎有一个你可能会研究的解码功能:
答案 1 :(得分:1)
以下是Dukeatcoding提到的akelos框架中的具体方法。
/**
* RFC 2231 Implementation
*/
public function _decodeHeaderAttribute($header_attribute, $charset = '')
{
if(preg_match("/^([A-Z0-9\-]+)(\'[A-Z\-]{2,5}\')?/i",$header_attribute,$match)){
$charset = $match[1];
$header_attribute = urldecode(str_replace(array('_','='),array('%20','%'), substr($header_attribute,strlen($match[0]))));
}
return Ak::recode($header_attribute, 'UTF-8', $charset);
}
了解他们是如何做到这一点并使用它创建自己的解码功能;)
P.S。我相信akelos框架使用LGLP许可证 - 因此,如果您在自己的项目中使用该方法,请注意。