芝麻web文件管理V1.00
编辑当前文件:/home/rejoandoctor/www/vendor/egulias/email-validator/src/Validation/RFCValidation.php
parser = new EmailParser($emailLexer); try { $this->parser->parse((string)$email); } catch (InvalidEmail $invalid) { $this->error = $invalid; return false; } $this->warnings = $this->parser->getWarnings(); return true; } public function getError() { return $this->error; } public function getWarnings() { return $this->warnings; } }