Answers for "check is email or not in php"

PHP
5

valide email php

$email = "[email protected]";

if (!filter_var($email, FILTER_VALIDATE_EMAIL)) {
  $emailErr = "Email invalide";
}
Posted by: Guest on May-11-2020
0

php check if string email

<?php
    if(filter_var("[email protected]", FILTER_VALIDATE_EMAIL)) {
        // valid address
    }
    else {
        // invalid address
    }
?>
Posted by: Guest on July-28-2021

Code answers related to "check is email or not in php"

Browse Popular Code Answers by Language