作者 邓超

x

@@ -96,9 +96,9 @@ class MailFun { @@ -96,9 +96,9 @@ class MailFun {
96 preg_match('/\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*/',$str,$email); 96 preg_match('/\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*/',$str,$email);
97 if(empty($email[0])){ 97 if(empty($email[0])){
98 // 邮箱2 98 // 邮箱2
99 - preg_match('/[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}/',$str,$email); 99 + preg_match('/[a-zA-Z0-9._%+-{}]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}/',$str,$email);
100 } 100 }
101 - return $email[0]??''; 101 + return str_replace(['<','>'],'',$email[0]??'');
102 } 102 }
103 103
104 104