メール校正の正規表現

2017年11月6日

function isEmail($email) {
return strlen($email) > 6 && preg_match(“/^[\w\-\.]+@[\w\-\.]+(\.\w+)+$/", $email);
}

Source

Posted by arkgame