作者 邓超

qq邮箱有tm毛病

@@ -168,7 +168,8 @@ class Body { @@ -168,7 +168,8 @@ class Body {
168 * @time 2024/9/21 9:51 168 * @time 2024/9/21 9:51
169 */ 169 */
170 protected function parseItem(string $body) { 170 protected function parseItem(string $body) {
171 - list($mime_header,$text) = explode("\r\n\r\n",trim($body)."\r\n\r\n",2); 171 + $body = str_replace("\n\n","\r\n\r\n",trim($body));
  172 + list($mime_header,$text) = explode("\r\n\r\n",($body)."\r\n\r\n",2);
172 $text = trim($text); 173 $text = trim($text);
173 // 解析头部 174 // 解析头部
174 $data = $this->parseMimeHeader($mime_header); 175 $data = $this->parseMimeHeader($mime_header);