...
|
...
|
@@ -72,8 +72,8 @@ class Body { |
|
|
// 为什么要加 \r\n在签名进行切割呢 是因为 boundary分割符只会占单独的一行,
|
|
|
//有一些服务商会把header头一起返回,header里面包含了这个符号,
|
|
|
//如果不加\r\n 就会导致 切割异常
|
|
|
$items = explode("\n".$boundary,
|
|
|
str_replace(['--'.$boundary.'--', $boundary.'--','--'.$boundary],$boundary,"\r\n".$body)
|
|
|
$items = explode("\r\n".$boundary,
|
|
|
str_replace(['--'.$boundary.'--', $boundary.'--','--'.$boundary],"\r\n".$boundary,"\r\n".$body)
|
|
|
);
|
|
|
// qq的有邮箱有毛病,标记是乱的
|
|
|
if(count($items)==1 && preg_match("/^\*\s\d+\sFETCH\s\(/",$body)){
|
...
|
...
|
|