You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<?php
use Egulias\EmailValidator\EmailValidator;
use Egulias\EmailValidator\Validation\RFCValidation;
$validator = new EmailValidator();
// "egulias/email-validator": "2.1.25"
$validator->isValid('www.foo.bar.baz@#', new RFCValidation()); //true
// "egulias/email-validator": "3.1.2"
$validator->isValid('www.foo.bar.baz@#', new RFCValidation()); //false
HTML5 validator is saying also that www.foo.bar.baz@# is wrong.
The text was updated successfully, but these errors were encountered:
HTML5 validator is saying also that
www.foo.bar.baz@#
is wrong.The text was updated successfully, but these errors were encountered: