Answer the question
In order to leave comments, you need to log in
How to check email validity using Yii2?
Actually the question is in the title.
Answer the question
In order to leave comments, you need to log in
docs.mirocow.com/doku.php?id=yii2:start
$email = '[email protected]';
$validator = new yii\validators\EmailValidator();
if ($validator->validate($email, $error)) {
echo 'Email is valid.';
} else {
echo $error;
}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question