作者 邓超

x

@@ -251,8 +251,9 @@ class Body { @@ -251,8 +251,9 @@ class Body {
251 251
252 // 邮件体包含邮件体 252 // 邮件体包含邮件体
253 if(preg_match('/boundary="?(.*)("|\r)/i',$item,$bm)){ 253 if(preg_match('/boundary="?(.*)("|\r)/i',$item,$bm)){
  254 + $bm[1] = trim(trim($bm[1],'"'));
254 255
255 - if (str_contains($item, trim($bm[1]).'--')){ 256 + if (str_contains($item, $bm[1].'--')){
256 $data = (new self('--'.$bm[1]."\r\n".$item,$this->fileSavePath))->getItem(); 257 $data = (new self('--'.$bm[1]."\r\n".$item,$this->fileSavePath))->getItem();
257 // $this->setItem($data); 258 // $this->setItem($data);
258 // 合并邮件体 259 // 合并邮件体